/* Estilo general */
body {
    background-color: white;
    font-family: 'Arial', sans-serif;
}
 
/* Contenedor principal */
.container {
    margin-top: 30px;
}
 
/* Estilo de la tabla */
.table thead {
    background-color: #011c40;
    color: white;
    text-align: center;
}
 
/* Bordes y espaciado de las celdas */
.table th, .table td {
    text-align: center;
    padding: 10px;
}
 
/* Títulos de secciones */
h2, h4 {
    color: #011c40;
    text-align: center;
    margin-top: 20px;
}
 
/* Contenedor de filtros */
.filter-container {
    margin-bottom: 20px;
    text-align: center;
}
 
/* Select responsivo */
#week-select {
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
}
 
/* Botones (Si agregamos interacción futura) */
.button {
    background-color: #691C32;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin: 5px;
}
 
.button:hover {
    background-color: #501225;
}
 
/* Estilo responsivo */
@media (max-width: 768px) {
    .table {
        font-size: 14px;
    }
 
    #week-select {
        width: 100%;
    }
}
/* Estilo para la sección */
#why-us {
    padding: 20px 0;
}
 
/* Botón de descarga */
.download-btn {
    display: inline-block;
    background-color: #011c40; /* Azul oscuro */
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}
 
.download-btn i {
    margin-right: 8px;
}
 
/* Efecto hover */
.download-btn:hover {
    background-color: #03356c; /* Azul más claro */
    transform: scale(1.05);
}
tiene menú contextual