
    background: #94a3b8;
}

.filters-sidebar-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.actions-panel-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.filters-sidebar-content,
.actions-panel-content {
    padding: 20px;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 60px;
}

.page-header-left,
.page-header-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-header h1 {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
    word-break: break-word;
    line-height: 1.2;
}

.header-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    display: none;
}

.header-button:hover {

/* ===== SCROLLBAR PERSONNALISÉE ===== */

.labels-suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.labels-suggestions-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.labels-suggestions-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.labels-suggestions-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}


