/* Contenedor general */
.tf-calendario,
.tf-tabla-clasificacion {
    font-family: 'Segoe UI', sans-serif;
    color: #000000;
    margin-bottom: 40px;
    overflow-x: auto;
}

/* Título */
.tf-calendario h3 {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    border-left: 5px solid #000000;
    padding-left: 10px;
}

/* Tablas */
.tf-tabla-clasificacion table,
.tf-tabla-clasificacion {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: none; /* Sin líneas */
}

/* Encabezados */
.tf-tabla-clasificacion th {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 10px !important;
    font-weight: bold !important;
    text-align: center !important;
    border: none !important;
}

/* Celdas */
.tf-tabla-clasificacion td {
    padding: 10px;
    text-align: center;
    background-color: transparent !important;
    color: #000000 !important;
    border: none !important;
}

/* Filas alternas */
.tf-tabla-clasificacion tr:nth-child(even) td {
    background-color: #ffffff !important;
}

/* Primeros 3 puestos en tabla */
.tf-tabla-clasificacion tr.top3 td {
    background-color: #d4edff !important;
    font-weight: bold;
}

/* Hover */
.tf-tabla-clasificacion tbody tr:hover td {
    background-color: #d0e7ff !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tf-tabla-clasificacion td {
        font-size: 14px;
        padding: 8px;
    }

    .tf-calendario h3 {
        font-size: 18px;
    }
}

/* Títulos del calendario (h3) */
.tf-calendario h3 {
    color: #000000 !important; /* Cambia a tu color deseado */
    background: none !important;
    border: none !important;
}

/* Etiquetas y selects */
.tf-calendario label,
.tf-calendario select {
    color: #000000 !important; /* Cambia a tu color deseado */
}




