/* Estilos exclusivos para el calendario de pistas */
.padel-grid-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.padel-grid { 
    border-collapse: collapse; 
    width: 100%; 
    border: 1px solid #e2e8f0; 
}

.padel-grid th, .padel-grid td { 
    border: 1px solid #e2e8f0; 
    padding: 12px; 
    text-align: center; 
}

.padel-grid .col-pista { 
    width: 120px; 
    font-weight: bold; 
    background: #f8fafc; 
}

/* Estados de las celdas */
.cell-libre { background-color: #ffffff; cursor: pointer; transition: 0.2s; }
.cell-libre:hover { background-color: #dcfce7; }
.cell-ocupado { background-color: #94a3b8; cursor: not-allowed; } 
.cell-mio { background-color: #3b82f6; color: white; } 

/* Leyenda */
.legend { margin-top: 15px; font-size: 0.9rem; }
.legend span { display: inline-block; width: 14px; height: 14px; margin-right: 5px; border-radius: 3px; }
.box-libre { border: 1px solid #ccc; background: #fff; }
.box-ocupado { background: #94a3b8; }
.box-mio { background: #3b82f6; }

.cell-libre:hover {
    background-color: #f1f5f9; /* Un gris muy suave al pasar el ratón */
    cursor: pointer;
}