.hidden {
    display: none;
}

/* Estilos para el Login */

.login-container {
    max-width: 400px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.form-control {
    border-radius: 8px;
}
.btn-login {
    width: 100%;
    background: #007bff;
    color: white;
    transition: 0.3s;
    border-radius: 8px;
}
.btn-login:hover {
    background: #0056b3;
}
.error-message {
    color: red;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

/* ------------------------- */

/* Estilos para los textos principales */

.tituloContenedor{
    background: #2f0f8c;
    border-radius: 35px;
    color: white;
    text-align: center;
    padding: 10px 0px 10px 0px;
}


.subtituloContenedor{
    background: #2f0f8c;
    border-radius: 30px;
    color: white;
    text-align: center;
    margin-top: 10px;
    padding: 10px 0px 10px 0px;
}

h1, h4{
    margin: 0;
}

/*-------------------------*/


/* Estilos para el contenedor general */

.containerContenido{
    padding: 15px;
}

/*-------------------------*/


/* Estilos para la galería de imágenes */

.image-container {
    text-align: center;
}

.image-container img {
    cursor: pointer;
    border: 2px solid #000;
    max-width: 100%;
    width: 70%;
    height: auto;
}
/* ------------------------- */

/* Estilos para el botón de zoom */

.buttons-container {
    margin: 0;
}

.buttons-container .btn {
    margin-bottom: 10px;
    width: 100%;
    border-color: #300066;
    
}
.btnActivo{
    color: white;
    background-color: #0008B0;
}
.btnInactivo{
    background-color: #E6E6FA;
    color: #000;
}
.zoom-button:hover{
    color: #E6E6FA;
    background-color: #484fef;
}

/* ------------------------- */

/* Estilos para las etiquetas */

.containerbtnEtiquetas {
    width: 100%;
    text-align: center;
    margin-top: 0.5em;
}
#etiquetas {
    margin: 10px;
}
#toggleEtiquetas {
    margin: 0;
}
.seccionEtiquetas{
    border: 5px solid black;
    margin-bottom: 5px;
}

/* ------------------------- */

/* Estilos para la plantilla de historias */
#contenidoCapitulo {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 7px #0008B0;
}
.seccion {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.seccion img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}
.seccion h3 {
    display: inline-block;
    margin: 0;
    color: #333;
}
.seccion p {
    margin-top: 10px;
    line-height: 1.6;
}
.btnHistoria:hover{
    color: #E6E6FA;
    background-color: #484fef;
}
/* ------------------------- */

/* Estilos para los submenús generados en citologías */

.submenu-item {
    display: block; 
    padding: 10px 15px;
    margin: 5px 0;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: bold;
}

.submenu-item:hover {
    background: linear-gradient(135deg, #0056b3, #004099);
    transform: scale(1.01);
}

.submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-list li {
    margin-bottom: 5px;
}

.btn-cito-impr {
    margin-left: 15px;
}

/* ------------------------- */

/* Estilos para el submenú Citologías / Improntas*/

/* Contenedor de los títulos */
.titulo-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Título del menú */
.titulo-menu {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Título del submenú */
.titulo-submenu {
    font-size: 1.5rem;
    font-weight: normal;
    color: #6c757d;
}

/* Contenedor de los botones */
.botones-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Botones */
.botones-container .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.botones-container .btn-primary {
    background-color: #0d6efd;
    border: none;
    color: white;
}

.botones-container .btn-primary:hover {
    background-color: #0b5ed7;
    transform: scale(1.05);
}

.botones-container .btn-secondary {
    background-color: #6c757d;
    border: none;
    color: white;
}

.botones-container .btn-secondary:hover {
    background-color: #5c636a;
    transform: scale(1.05);
}
/* ------------------------- */

