/* ============================================
   FILTRE ARRÊTS - Style pour le filtre par type
   ============================================ */

.arrets-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.arrets-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.arrets-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrets-filters .filter-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #1e293b;
    white-space: nowrap;
}

.arrets-filters .filter-group label i {
    color: #0078D4;
    font-size: 14px;
}

.filter-select {
    min-width: 180px;
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: white;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #0078D4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.filter-select:focus {
    outline: none;
    border-color: #0078D4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.15);
}

.filter-select option {
    padding: 8px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .arrets-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .arrets-filters {
        width: 100%;
    }
    
    .arrets-filters .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
    }
}





