body {
    font-family: 'Figtree', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .titulo h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .titulo p {
        font-size: 18px;
        color: #555;
    }

.imprimir-btn {
    margin-top: 20px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #005BAB; 
    font-family: 'Figtree', sans-serif;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer; 
}

    .imprimir-btn:hover {
        background-color: #005199;
    }

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 18px;
    table-layout: fixed;
}

thead th {
    background-color: #dce8dc;
    padding: 15px;
    font-weight: 600;
    font-size: 20px;
}

tbody td {
    padding: 15px;
    border: 1px solid #ccc;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.recreo {
    background-color: #c2d4eb;
    font-weight: bold;
    font-size: 20px;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #555;
}


@media (min-width: 1024px) {
    table {
        font-size: 20px;
    }

    thead th {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    table {
        font-size: 16px;
    }

    thead th {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 12px;
    }

    thead th {
        font-size: 14px;
    }
}

@media print {
    .imprimir-btn {
        display: none; 
    }

    footer {
        display: none; 
    }
}
