#book-selector, #page-selector, #exercise-tabs, #chapter-selector, #chapter-verbs, #deck-selector {
  margin: 20px 20px;
}

#book-dropdown, #page-dropdown, #chapter-dropdown, #deck-dropdown {
  width: 100%;
  padding: 10px;
}

#container {
  display: flex;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tab {
  margin: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}




.tabs {
  display: flex;
  margin: 10px 0;
  justify-content: center;
}

.tab-link {
  padding: 5px 15px;
  margin-right: 5px;
  border: 1px solid #cfc8d8;
  background-color: #f9f9f9;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tab-link.active {
background-color: #646464;
  font-weight: bold;
  color: #ffffff;
}

.tab-contentE, #chapter-verbs {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  
}




.verbs-extra-0, .verbs-extra-1 {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}


.title-verbs {
  margin-top: 10px;
  margin-left:20px;
}








.verbs {
  margin-top: 10px;
}


.verb {
  display: flex;
  align-items: center;
  margin: 8px 5px;
  padding: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  width: 250px;
  border-radius: 8px;
  cursor: pointer;
  position: relative; /* Necesario para la posición de la etiqueta */
}


.bloqueado {
  opacity: 0.7;
  
  background-color: #eee;
  pointer-events: none;
}

.desbloqueado {
  opacity: 1;
  box-shadow: 3px 7px 7px -6px rgba(164, 188, 235, 1);
}


.circle {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.yellow {
  background-color: orange;
}



.label-corner {
  position: absolute;
  top: -8px;
  height: 15px;
  right: 0px;
  /* background-color: #ffcc00; */
  color: #28ad11;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
}


.lock-icon {
position: absolute;
    top: 17px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/Divi-child/icons/lock-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}


.circuloRojo {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: red;
}

.circuloVerde {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: green;
}

.circuloAmarillo {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: orange;
}








/*AYUDA*/

/* Botón de ayuda */
.help-button {
  background-color: #0073e6;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block; /* Ajuste para que se alinee con otros elementos en flujo */
}

/* Estilos del modal */
.help-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  max-height: 80vh; /* Limitar la altura al 80% de la ventana */
  overflow-y: auto; /* Habilitar desplazamiento si el contenido es largo */
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

/* Contenido del modal */
.modal-content {
  background-color: white;
  padding: 20px;
}

/* Cerrar el modal */
.close-modal {
position: absolute;
  top: 15px;
  right: 15px;
  color: #aaa;
  /* float: right; */
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
}

/* Asegurar que el contenido se vea bien en dispositivos móviles */
@media (max-width: 600px) {
  .help-modal {
      width: 90%; /* Ajuste para pantallas pequeñas */
      max-width: 90%;
      padding: 15px;
  }

  .modal-content p {
      font-size: 14px; /* Texto más pequeño para móviles */
  }
}


.div-titulo {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h5 {
  padding-bottom: 0px;
}


.card-image {
  height: 28px;
  width: auto;
}

