@keyframes bounce {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.5);
  }
  100% {
      transform: scale(1);
  }
}

.tab-content .tab-pane.fade:not(.show) {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tab-button-bounce {
  animation: bounce 0.5s;
}
@keyframes bounce-in {
0% {
transform: scale(0);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}

.loader {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.loader__dots {
display: flex;
justify-content: center;
align-items: center;
}

.loader__dot {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #6e84a3;
margin: 0 5px;
animation: bounce-in 0.6s infinite alternate;
}

.loader__dot:nth-child(2) {
animation-delay: 0.2s;
}

.loader__dot:nth-child(3) {
animation-delay: 0.4s;
}

.custom-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* Inicialmente oculto */
  width: 300px;
  height: 100vh;
  background-color: #f2f2f2; /* Color de fondo gris claro */
  transition: right 0.3s ease; /* Transición suave de la propiedad right */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.sidebar.open {
  right: 0; /* Mostrar el sidebar ajustando la propiedad right */
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: font-size 0.3s ease-in-out;
}

.menu-list i {
  margin-right: 10px;
  font-size: 18px;
}

.menu-list li:hover a {
  font-size: 18px; /* Tamaño de fuente más grande al pasar el cursor */
  color: #555; /* Color de texto más oscuro al pasar el cursor */
}

.menu-list li {
  margin-bottom: 20px; /* Espaciado adicional entre elementos li */
}

.sidebar > div:last-child {
  margin-top: auto; /* Colocar el último div al final del sidebar */
}

.card-cuentos {
  transition: transform 0.3s ease; /* Transición de 0.3 segundos con efecto "ease" */
}

.card-cuentos:hover {
  transform: scale(1.1); /* Ajusta el valor según el efecto de zoom deseado */
}

.line-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line {
  width: 100%;
  height: 2px;
  background-color: rgb(200, 200, 200); /* Cambia el color de la línea aquí */
}

.zoom-link {
  display: inline-block;
  transition: transform 0.2s;
}

.zoom-link:hover {
  transform: scale(1.1);
}

