/* Overlay and Pokemon modle css */
.no-scroll{
  overflow: hidden;
}
.pokemon-overlay{
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pokemon-model{
  padding: 2px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  max-height: 100vh;
  scroll-behavior: smooth;
}
.poko-header{
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.model-content{
  color: #fff;
}
.model-content-details{
  background: #fff;
  color: black;
  border-radius: 10px;
  padding: 20px 0 3px 0;
  margin: 17px 0 18px 0;
}
.poko-header span{
  font-weight: bold;
}
.model-img{
  width: 130px; 
  padding-bottom: 10px;
}

.leftRight-arrows{
  width: 20px;
  margin: 0 10px;
}
.leftRight-arrows:hover{
  cursor: pointer;
  transform: scale(1.1);
}
.poko-arrows{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.d-none-arrow{
  display: none;
}

.tabs-and-details{
      background: #fff;
    margin-bottom: 20px;
    padding: 20px 0 20px 0;
    border-radius: 10px;
}
.tab-menu {
 display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 10px;
}

.tab-btn {
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.tab-btn.active {
  background-color: #4CAF50;
  color: white;
  padding: 0 5px 2px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
