@charset "utf-8";
/* CSS Document */

/* --- CONTENEDOR DE LA TABLA --- */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Permite scroll horizontal en móviles */
    -webkit-overflow-scrolling: touch;
    margin-top: 30px;
    border-radius: 8px;
    background-color: #0a0a0a;
}

.vaqueros-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-width: 600px; /* Asegura que no se amontone en móvil */
}

/* --- CABECERA --- */
.vaqueros-table th {
    background-color: #151515;
    color: #fd4d00; /* Naranja Vaqueros */
    font-family: 'BaseR', sans-serif;
    padding: 15px 10px;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
}

.vaqueros-table th.text-left { text-align: left; }

/* --- FILAS Y CELDAS --- */
.vaqueros-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.95rem;
}

.vaqueros-table td.text-left { text-align: left; }

.team-name {
    font-weight: 700;
    text-transform: uppercase;
}

/* --- RESALTAR AL EQUIPO (VAQUEROS) --- */
.highlight-team {
    background-color: rgba(253, 77, 0, 0.1); /* Fondo naranja muy sutil */
}

.highlight-team td {
    color: #fd4d00;
    border-bottom: 1px solid #fd4d00;
}

.highlight-team .team-name {
    font-weight: 900;
}

/* --- EFECTO HOVER --- */
.vaqueros-table tbody tr:hover {
    background-color: #111;
}

/* --- AJUSTES MÓVILES --- */
@media (max-width: 768px) {
    .vaqueros-table th, .vaqueros-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}