/* Pase de Lista Deportes/Semestrales - Estilos específicos */

/* Controles superiores (lista + fecha + horario + botón) */
.paselist-controles {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 160px;
}

.control-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9em;
}

.control-group-btn {
    flex: 0 0 auto;
    min-width: unset;
    justify-content: flex-end;
}

.paselist-select,
#fecha-paselist {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95em;
    color: #2c3e50;
    background: #fff;
    transition: border-color 0.3s ease;
    width: 100%;
}

.paselist-select:focus,
#fecha-paselist:focus {
    outline: none;
    border-color: #3498db;
}

/* Responsive */
@media (max-width: 768px) {
    .paselist-controles {
        flex-direction: column;
        align-items: stretch;
    }
    .control-group {
        min-width: unset;
        width: 100%;
    }
    .control-group-btn {
        width: 100%;
    }
    .control-group-btn .btn-cargar-fecha {
        width: 100%;
    }
}