/* chat-welcome-config — styles page (migration DA, ne pas dupliquer la coque) */

html { color-scheme: dark; }

        .input-field { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; padding: 10px 14px; color: white; width: 100%; }

        /* Combobox / select — fond sombre (évite la liste blanche native) */

        select.input-field option {
            background-color: #1a1a1a;
            color: #fff;
            padding: 10px 12px;
        }
        select.input-field option:checked,
        select.input-field option:hover {
            background-color: #ff6b35;
            color: #fff;
        }
        .modal-panel select.input-field {
            background-color: #252525;
        }

        .section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
        .section-head .section-head-text { flex: 1; min-width: 0; }
        .section-head .module-toggle { flex-shrink: 0; margin-top: 2px; }
        .config-section { display: flex; flex-direction: column; }
        .var-btn { font-size: 11px; padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: #e5e7eb; cursor: pointer; }
        .var-btn:hover { background: rgba(255, 107, 53, 0.25); }
        .profile-card { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; display: flex; align-items: center; gap: 12px; }
        .profile-card img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
        .modal-backdrop { position: fixed; inset: 0; z-index: 100000; background: rgba(0,0,0,0.72); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 1rem; }
        .modal-backdrop.open { display: flex; }
        .modal-panel { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 1.5rem; }
