body {
    font-family: 'Arial';
    background-color: #DCF2F1;
    color: #333;
    margin: 0;
}

#header {
    text-align: center;
    margin-top: 2px;
}

#header h1, #header h2{
    margin: 5px; /* Ajusta el margen según tus necesidades */
}

#header pre {
    font-family: 'Arial';
    margin: 5px;
}

.contenedor {
    display: flex;
}

.izquierda {
    float: left;
    width: 25%; /* Ajusta el ancho según tus necesidades */
    margin-right: 5px; /* Ajusta el margen derecho según tus necesidades */
}

.derecha {
    float: right;
    width: 25%; /* Ajusta el ancho según tus necesidades */
    margin-left: 900px; /* Ajusta el margen izquierdo según tus necesidades */
}

#grupo-details p {
    margin: 5px 0;
}

table {
    border-collapse: separate;
    border-spacing: 0 10px;
    width: 95%;
    margin: 20px auto;
}

caption {
    font-size: 1.5em;
    color: #7FC7D9;
    margin-bottom: 10px;
}

th, td {
    border: 3px solid #365486;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #0F1035;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

td {
    background-color: #7FC7D9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.receso td {
    background-color: #FFB6C1;
    font-weight: bold;
}

th:hover, td:hover {
    background-color: #E6B9DE;
}
