    /* =================================
DISCIPLINA
================================= */

#zentra-disciplina{
margin-top:20px;
}

/* TITULOS */

.zentra-sanciones .zentra-title,
.zentra-amarillas .zentra-title{
font-size:26px;
font-weight:700;
color:#fff;
margin-bottom:15px;
text-align:center;
}

/* =================================
TABLAS
================================= */

.zentra-sanciones-table,
.zentra-amarillas-table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

/* encabezado */

.zentra-sanciones-table thead,
.zentra-amarillas-table thead{
background:#fff;
color:#11843c;
}

.zentra-sanciones-table th,
.zentra-amarillas-table th{
padding:10px;
font-size:14px;
text-align:center;
font-weight:700;
}

/* filas */

.zentra-sanciones-table td,
.zentra-amarillas-table td{
padding:10px;
font-size:14px;
text-align:center;
color:#222;
}

/* zebra */

.zentra-sanciones-table tbody tr:nth-child(even),
.zentra-amarillas-table tbody tr:nth-child(even){
background:#f6f6f6;
}

/* hover */

.zentra-sanciones-table tbody tr:hover,
.zentra-amarillas-table tbody tr:hover{
background:#e9f7ef;
}

/* jugador */

.zentra-sanciones-table td:first-child,
.zentra-amarillas-table td:first-child{
font-weight:600;
color:#11843c;
}

/* =================================
FILTRO EQUIPO
================================= */

#zentra-team-filter{
margin-bottom:15px;
padding:8px 12px;
border-radius:8px;
border:none;
background:#fff;
color:#11843c;
font-weight:600;
cursor:pointer;
}

/* =================================
FECHAS (mismo estilo que partidos)
================================= */

.zentra-fechas{
display:flex;
flex-wrap:wrap;
gap:8px;
justify-content:center;
margin-bottom:15px;
}

.zentra-fecha-btn{
border:none;
background:#f0f0f0;
padding:6px 12px;
border-radius:6px;
cursor:pointer;
font-weight:600;
transition:.2s;
}

.zentra-fecha-btn:hover{
background:black;
color:#fff;
}

.zentra-fecha-btn.active{
background:black;
color:#11843c;
}
/* =================================
FILTROS SUPERIORES
================================= */

.zentra-top-filters{
display:flex;
gap:15px;
margin-bottom:20px;
flex-wrap:wrap;
}

/* SELECTS */

.zentra-top-filters select{
border-radius:8px;
padding:10px 14px;
font-size:16px;
font-weight:600;
background:#fff;
outline:none;
cursor:pointer;
min-width:160px;
transition:all .2s ease;

}

/* hover */

.zentra-top-filters select:hover{
background:#fff;
color: #0a7c3e;
}

/* focus */

.zentra-top-filters select:focus{
box-shadow:0 0 0 3px rgba(17,132,60,0.2);
}


/* =================================
RESPONSIVE
================================= */

@media(max-width:768px){
.zentra-top-filters{
flex-direction:column;
}

.zentra-top-filters select{
width:100%;
}

/* contenedor scroll */

.zentra-sanciones-table,
.zentra-amarillas-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

/* tamaño texto */

.zentra-sanciones-table th,
.zentra-amarillas-table th,
.zentra-sanciones-table td,
.zentra-amarillas-table td{
font-size:12px;
padding:6px;
}

/* filtros */

#zentra-team-filter{
width:100%;
margin-bottom:12px;
}

/* botones fecha */

.zentra-fechas{
overflow-x:auto;
flex-wrap:nowrap;
justify-content:flex-start;
padding-bottom:5px;
}

.zentra-fecha-btn{
flex:0 0 auto;
}


}