
.docente{
    margin-top: 30px;
}

.docente-nivel-titulo{
    text-align: center;
    color: white;
    background: #0fa759;
    margin-bottom: 30px;
}

.coordinador {
    display: flex;
    justify-content: center;
    margin-bottom: 30px; /* Añadir margen inferior */
}

.coordinador a {
    color: black;
    text-decoration: none; /* Eliminar subrayado del enlace */
    display: flex;
    justify-content: center;
    transition: .2s;
}

.coordinador a:hover {
    transform: scale(1.03);
}


.coordinador-contenedor {
    text-align: center;
    box-shadow: -1px 6px 12px 0px rgba(0, 0, 0, 0.20);
    width: 350px;
    padding: 20px;
    background: white;
    margin: 10px; /* Añadí espacio entre los contenedores */
}

.coordinador-contenedor img {
    width: 100%; /* Hacer la imagen responsive */
    max-width: 350px; /* Limitar el tamaño máximo de la imagen */
    border-radius: 10px; /* Bordes redondeados en la imagen */
}

.coordinador-contenedor h3 {
    font-size: 18px;
    margin-top: 10px;
}

.coordinador-contenedor h2 {
    font-size: 21px;
    border-top: 3px solid #efaf60;
    margin-top: 15px;
    padding-top: 10px; /* Espaciado en la parte superior */
}



/* Responsividad para móviles */
@media (max-width: 768px) {
    .coordinador-contenedor {
        width: 90%; /* Hacer el contenedor más pequeño en móviles */
    }
}


.tabla{
    max-width: 1400px;
    margin: auto;
}

.tabla-titulo{
    text-align: center;
    color: #0fa759;
    margin-top: 30px;
}


#lightbox-desc{
	color: white;
}

.table-container {
    max-width: 100%;
    overflow-x: auto;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #0fa759;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

.hidden-row {
    display: none;
}

/* Botón de mostrar más */
.toggle-btn {
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #0fa759;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-btn:hover {
    background-color: #0c6f3c;
}

button.show-btn {
    padding: 8px 12px;
    background-color: #0fa759;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: .3s;
}

button.show-btn:hover {
    background-color: #0c6f3c;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.hidden {
    display: none;
}

.lightbox-content {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 600px;
}


.lightbox-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.lightbox-image {
    width: 48%; /* Ajusta el tamaño de cada imagen */
    text-align: center;
}

.lightbox img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#lightbox-descriptions p {
    font-size: 16px;
    color: white;
    margin: 10px 0;
    text-align: center;
}

button.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}


/* Responsividad móvil */
@media (max-width: 768px) {
    .table-container {
        width: 100%;
        overflow-x: auto;
    }
    table {
        width: 100%;
        font-size: 14px;
    }
}
