/* Contenedor general */
.tf-calendario,
.tf-tabla-clasificacion {
    font-family: 'Segoe UI', sans-serif;
    color: #1d3557;
    margin-bottom: 40px;
    overflow-x: auto;
}

/* Título */
.tf-calendario h3 {
    font-size: 22px;
    font-weight: bold;
    color: #1d3557;
    margin-bottom: 15px;
    border-left: 5px solid #457b9d;
    padding-left: 10px;
}

/* Tablas */
.tf-table,
.tf-tabla-clasificacion table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

/* Encabezados */
.tf-table thead th,
.tf-tabla-clasificacion thead th {
    background-color: #1d3557;
    color: white;
    padding: 10px;
    font-weight: 600;
}

/* Celdas */
.tf-table td,
.tf-tabla-clasificacion td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #dbe9f6;
    background-color: #f5faff;
}

/* Filas alternas */
.tf-table tr:nth-child(even) td,
.tf-tabla-clasificacion tr:nth-child(even) td {
    background-color: #e8f1fa;
}

/* Ganador resaltado */
.ganador {
    font-weight: bold;
    color: #28ea07;
}

/* Primeros 3 puestos en tabla */
.tf-tabla-clasificacion tbody tr:nth-child(-n+3) {
    background-color: #d4edff;
    font-weight: bold;
}

/* Primer TD más fuerte */
.tf-tabla-clasificacion td:first-child {
    font-weight: bold;
}

/* Hover */
.tf-table tbody tr:hover td,
.tf-tabla-clasificacion tbody tr:hover td {
    background-color: #d0e7ff;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tf-table td,
    .tf-tabla-clasificacion td {
        font-size: 14px;
        padding: 8px;
    }

    .tf-calendario h3 {
        font-size: 18px;
    }
    
}




