    /* ===== Material Design Color Palette ===== */
    :root {
      /* Primary: Indigo (기본 사용: 400) */
      --primary-50: #E8EAF6;
      --primary-100: #C5CAE9;
      --primary-200: #9FA8DA;
      --primary-300: #7986CB;
      --primary-400: #5C6BC0;
      --primary-500: #3F51B5;
      --primary-600: #3949AB;
      --primary-700: #303F9F;
      --primary-800: #283593;
      --primary-900: #1A237E;

      /* Baemin: Cyan */
      --baemin-50: #E0F7FA;
      --baemin-100: #B2EBF2;
      --baemin-200: #80DEEA;
      --baemin-300: #4DD0E1;
      --baemin-400: #26C6DA;
      --baemin-500: #00BCD4;
      --baemin-600: #00ACC1;
      --baemin-700: #0097A7;
      --baemin-800: #00838F;
      --baemin-900: #006064;

      /* Coupang: Blue */
      --coupang-50: #E3F2FD;
      --coupang-100: #BBDEFB;
      --coupang-200: #90CAF9;
      --coupang-300: #64B5F6;
      --coupang-400: #42A5F5;
      --coupang-500: #2196F3;
      --coupang-600: #1E88E5;
      --coupang-700: #1976D2;
      --coupang-800: #1565C0;
      --coupang-900: #0D47A1;

      /* Yogiyo: Red */
      --yogiyo-50: #FFEBEE;
      --yogiyo-100: #FFCDD2;
      --yogiyo-200: #EF9A9A;
      --yogiyo-300: #E57373;
      --yogiyo-400: #EF5350;
      --yogiyo-500: #F44336;
      --yogiyo-600: #E53935;
      --yogiyo-700: #D32F2F;
      --yogiyo-800: #C62828;
      --yogiyo-900: #B71C1C;

      /* Danger: Red (Material) */
      --danger-400: #EF5350;
      --danger-500: #F44336;
      --danger-600: #E53935;

      /* Success: Green (Material) */
      --success-400: #66BB6A;
      --success-500: #4CAF50;
      --success-600: #43A047;

      /* Grey (Material) */
      /* Soldout: Red (Material) */
      --soldout-500: #F44336;
      --soldout-600: #E53935;
      --soldout-700: #D32F2F;

      /* Hidden: Amber (Material) */
      --hidden-600: #FFB300;
      --hidden-700: #FFA000;
      --hidden-800: #FF8F00;

      /* Selling: Green (Material) */
      --selling-500: #4CAF50;
      --selling-600: #43A047;
      --selling-700: #388E3C;

      /* Grey (Material) */
      --grey-50: #FAFAFA;
      --grey-100: #F5F5F5;
      --grey-200: #EEEEEE;
      --grey-300: #E0E0E0;
      --grey-400: #BDBDBD;
      --grey-500: #9E9E9E;
      --grey-600: #757575;
      --grey-700: #616161;
      --grey-800: #424242;
      --grey-900: #212121;

      /* Black & White */
      --black: #000000;
      --white: #FFFFFF;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--grey-100); color: var(--grey-800); }

    /* ===== Auth Pages ===== */
    .auth-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
    .auth-card { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.1); width: 100%; max-width: 400px; }
    .auth-card h1 { font-size: 22px; text-align: center; color: var(--primary-400); margin-bottom: 8px; }
    .auth-card .subtitle { text-align: center; color: var(--grey-500); font-size: 14px; margin-bottom: 24px; }
    .auth-field { margin-bottom: 16px; }
    .auth-field label { display: block; font-size: 13px; color: var(--grey-600); margin-bottom: 6px; font-weight: 600; }
    .auth-field input { width: 100%; padding: 12px 14px; border: 1px solid var(--grey-300); border-radius: 8px; font-size: 16px; transition: border-color 0.2s; }
    .auth-field input:focus { outline: none; border-color: var(--primary-400); }
    .auth-field .pw-wrapper { position: relative; }
    .auth-field .pw-wrapper input { padding-right: 44px; }
    .auth-field .pw-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 18px; padding: 4px; color: var(--grey-500); }
    .auth-btn { width: 100%; padding: 14px; background: var(--primary-400); color: var(--white); border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
    .auth-btn:hover { background: var(--primary-700); }
    .auth-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .auth-link { text-align: center; margin-top: 16px; font-size: 14px; color: var(--grey-500); }
    .auth-link a { color: var(--primary-400); text-decoration: none; font-weight: 600; cursor: pointer; }
    .auth-link a:hover { text-decoration: underline; }
    .auth-error { background: var(--yogiyo-50); color: var(--danger-600); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; }

    /* ===== Header ===== */
    .header { background: var(--primary-400); color: var(--white); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
    .header h1 { font-size: 20px; }
    .header-right { display: flex; align-items: center; gap: 12px; }
    .header .status { display: flex; align-items: center; gap: 8px; font-size: 14px; }
    .header .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot.on { background: var(--success-400); }
    .dot.off { background: var(--danger-400); }
    .dot.executing { background: var(--hidden-600); animation: blink 1s infinite; }
    @keyframes blink { 50% { opacity: 0.4; } }

    .header-icon-btn { background: rgba(255,255,255,0.15); border: none; color: var(--white); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
    .header-icon-btn:hover { background: rgba(255,255,255,0.3); }

    /* ===== Tabs ===== */
    .tabs { display: flex; background: var(--white); border-bottom: 2px solid var(--grey-300); position: sticky; top: 0; z-index: 10; }
    .tab { flex: 1; padding: 14px; text-align: center; font-size: 15px; font-weight: 600; color: var(--grey-500); cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.2s; }
    .tab.active { color: var(--primary-400); border-bottom-color: var(--primary-400); }
    .tab-content { display: none; }
    .tab-content.active { display: block; }

    .container { max-width: 900px; margin: 0 auto; padding: 20px; }
    .card { background: var(--white); border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 16px; }
    .card h2 { font-size: 16px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--grey-200); }

    /* ===== Controls ===== */
    .controls { display: flex; gap: 8px; flex-wrap: wrap; }
    .btn { padding: 10px 20px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: translateY(0); }
    .btn.primary { background: var(--primary-400); color: var(--white); }
    .btn.danger { background: var(--danger-400); color: var(--white); }
    .btn.secondary { background: var(--grey-300); color: var(--grey-800); }
    .btn.small { padding: 6px 12px; font-size: 12px; }
    .btn.success { background: var(--success-500); color: var(--white); }
    .btn.warning { background: var(--primary-700); color: var(--white); }
    .btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    /* ===== Manual Run ===== */
    .manual-run { display: flex; gap: 8px; margin-top: 12px; }
    .manual-run input { flex: 1; padding: 10px 12px; border: 1px solid var(--grey-300); border-radius: 8px; font-size: 16px; }

    /* ===== Schedule List ===== */
    .schedule-list { margin-top: 12px; }
    .schedule-item { padding: 10px 12px; background: var(--primary-50); border-radius: 6px; margin-bottom: 6px; font-size: 13px; }
    .schedule-time { font-weight: 600; margin-bottom: 4px; }
    .schedule-stores { display: flex; flex-direction: column; gap: 2px; }
    .schedule-store { display: flex; justify-content: space-between; color: var(--grey-600); font-size: 12px; padding-left: 8px; }

    /* ===== Config Editor ===== */
    .account { border: 1px solid var(--grey-300); border-radius: 8px; padding: 16px; margin-bottom: 12px; background: var(--primary-50); }
    .account-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
    .account-header h3 { font-size: 18px; color: var(--grey-900); font-weight: 700; }
    .form-row { display: flex; gap: 8px; margin-bottom: 8px; }
    .form-row label { font-size: 12px; color: var(--grey-500); display: block; margin-bottom: 4px; }
    .form-row input { width: 100%; padding: 8px 10px; border: 1px solid var(--grey-300); border-radius: 6px; font-size: 16px; }
    .form-col { flex: 1; min-width: 0; }

    .store { background: var(--grey-50); border-radius: 6px; padding: 12px; margin-top: 8px; border: 1px solid var(--grey-200); }
    .store-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .store-header h4 { font-size: 13px; color: var(--grey-600); }

    .budget-grid { display: grid; grid-template-columns: 1fr; gap: 6px; margin-top: 8px; }
    .budget-item { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
    .budget-time { display: flex; align-items: center; gap: 4px; }
    .budget-value { display: flex; align-items: center; gap: 4px; flex: 1; min-width: 120px; }
    .budget-item select[data-budget-hour],
    .budget-item select[data-budget-minute] { width: 58px; padding: 6px 4px; border: 1px solid var(--grey-300); border-radius: 4px; font-size: 14px; text-align: center; flex-shrink: 0; background: var(--white); }
    .budget-item input[data-budget-amount] { flex: 1; min-width: 60px; padding: 6px 8px; border: 1px solid var(--grey-300); border-radius: 4px; font-size: 14px; text-align: right; }
    .budget-item span { font-size: 12px; color: var(--grey-600); flex-shrink: 0; }
    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
    input[type="number"] { -moz-appearance: textfield; }
    .budget-item input.input-warning { background: var(--yogiyo-50); border-color: var(--yogiyo-200); }
    .budget-tip { font-size: 11px; color: var(--yogiyo-400); display: none; padding: 2px 0; }
    .budget-tip.visible { display: block; }

    /* 매일 토글 */
    .daily-toggle { padding: 4px 10px; border-radius: 12px; border: 1px solid var(--grey-300); font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
    .daily-toggle.on { background: var(--primary-400); color: var(--white); border-color: var(--primary-400); }
    .daily-toggle.off { background: var(--grey-200); color: var(--grey-500); }

    /* 요일 버튼 */
    .days-row { display: flex; gap: 4px; padding: 4px 0; flex-wrap: wrap; }
    .day-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--grey-300); font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; background: var(--grey-200); color: var(--grey-500); }
    .day-btn.on { background: var(--primary-400); color: var(--white); border-color: var(--primary-400); }
    .day-warn { font-size: 11px; color: var(--yogiyo-400); display: none; padding: 2px 0; }
    .day-warn.visible { display: block; }

    .budget-extra { width: 100%; padding-left: 4px; }

    .add-btn { display: inline-block; padding: 8px 14px; font-size: 13px; background: none; border: 1px dashed var(--primary-400); border-radius: 6px; color: var(--primary-400); cursor: pointer; margin-top: 8px; }
    .add-btn:hover { border-color: var(--primary-700); color: var(--primary-700); }
    .add-btn.delete-btn { border-color: var(--danger-400); color: var(--danger-400); }
    .add-btn.delete-btn:hover { border-color: var(--danger-600); color: var(--danger-600); }
    .remove-btn { background: var(--danger-400); border: none; color: var(--white); cursor: pointer; font-size: 13px; font-weight: 700; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0; line-height: 1; }

    /* ===== Admin config: user group ===== */
    .user-group { margin-bottom: 24px; }
    .user-group-header { font-size: 16px; font-weight: 700; color: var(--grey-800); padding: 10px 14px; background: var(--primary-50); border-radius: 8px 8px 0 0; border: 1px solid var(--primary-100); border-bottom: none; }

    /* ===== Log (Chat Style) ===== */
    #tab-log.active { display: flex; flex-direction: column; height: calc(100vh - 110px); }
    #tab-log .container { flex: 1; display: flex; flex-direction: column; overflow: hidden; max-width: 800px; width: 100%; padding: 0; margin: 0 auto; }
    .log-date-nav { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 12px; background: var(--white); border-bottom: 1px solid #eee; flex-shrink: 0; position: relative; }
    .log-date-nav span { font-size: 15px; font-weight: 600; min-width: 130px; text-align: center; }
    .log-date-nav .btn { padding: 6px 14px; font-size: 13px; }
    .log-container { flex: 1; overflow-y: auto; overflow-x: hidden; background: var(--grey-300); padding: 16px 12px; }

    .log-time-divider { text-align: center; margin: 16px 0 8px; }
    .log-time-divider span { background: rgba(0,0,0,0.08); color: var(--grey-500); font-size: 11px; padding: 4px 12px; border-radius: 12px; }

    .log-bubble { max-width: 100%; margin-bottom: 4px; animation: bubbleIn 0.2s ease-out; }
    @keyframes bubbleIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

    .log-bubble .bubble { padding: 10px 14px; border-radius: 8px; font-size: 13.5px; line-height: 1.5; word-break: break-all; overflow-wrap: break-word; white-space: pre-wrap; box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

    .log-bubble.info .bubble { background: var(--white); color: var(--grey-800); }
    .log-sub { color: var(--grey-500); }
    .log-bubble.success .bubble { background: var(--primary-400); color: var(--white); }
    .log-bubble.error .bubble { background: var(--danger-400); color: var(--white); }
    .log-entry.info { color: var(--grey-400); }
    .log-controls { display: flex; justify-content: flex-end; margin-bottom: 8px; }

    /* ===== User Management ===== */
    .user-card { background: var(--white); border: 1px solid #e8e8e8; border-radius: 12px; padding: 16px; margin-bottom: 12px; }
    .user-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .user-card-name { font-size: 16px; font-weight: 700; color: var(--grey-800); }
    .user-card-id { font-size: 12px; color: var(--grey-500); margin-top: 2px; }
    .user-card-info { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
    .user-card-field { font-size: 13px; }
    .user-card-field .label { color: var(--grey-500); font-size: 11px; margin-bottom: 2px; }
    .user-card-field .value { color: var(--grey-800); }
    .user-card-actions { display: flex; flex-wrap: wrap; gap: 6px; }
    .user-actions { display: flex; gap: 6px; flex-wrap: wrap; }
    .status-badge { display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; }
    .status-badge.pending { background: var(--hidden-600); color: var(--white); }
    .status-badge.approved { background: var(--success-500); color: var(--white); }
    .status-badge.rejected { background: var(--danger-400); color: var(--white); }
    .status-badge.suspended { background: var(--grey-600); color: var(--white); }

    /* ===== Password Reset Modal ===== */
    .pw-reset-result { background: var(--success-400); border: 1px solid var(--success-500); border-radius: 8px; padding: 14px; margin-top: 12px; }
    .pw-reset-result .pw-display { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
    .pw-reset-result .pw-value { font-family: 'SF Mono', 'Consolas', monospace; font-size: 18px; font-weight: 700; color: #155724; background: var(--white); padding: 8px 14px; border-radius: 6px; border: 1px solid #c3e6cb; }
    .pw-reset-result .copy-btn { padding: 8px 14px; background: var(--primary-400); color: var(--white); border: none; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }
    .pw-reset-result .copy-btn:hover { background: var(--primary-700); }

    /* ===== Overlay / Modal ===== */
    .overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
    .overlay.show { display: flex; }
    .modal { background: var(--white); border-radius: 12px; padding: 24px; width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
    .modal h2 { font-size: 18px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--grey-200); }
    .modal-field { margin-bottom: 16px; }
    .modal-field label { display: block; font-size: 13px; color: var(--grey-600); margin-bottom: 6px; font-weight: 600; }
    .modal-field input { width: 100%; padding: 10px 12px; border: 1px solid var(--grey-300); border-radius: 8px; font-size: 16px; }
    .modal-field input:disabled { background: var(--grey-100); color: var(--grey-500); }
    .modal-field .pw-wrapper { position: relative; }
    .modal-field .pw-wrapper input { padding-right: 44px; }
    .modal-field .pw-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 18px; padding: 4px; color: var(--grey-500); }
    .modal-actions { display: flex; gap: 8px; margin-top: 20px; }
    .modal-actions .btn { flex: 1; text-align: center; }

    /* ===== Branch Edit Modal ===== */
    .branch-edit-modal .modal-field input { font-size: 16px; }

    /* ===== Hidden ===== */
    .hidden { display: none !important; }

    /* ===== User view: schedule below config ===== */
    .user-schedule-section { margin-top: 20px; }
    .user-schedule-section h2 { font-size: 16px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--grey-200); }

    /* ===== User Account Item (계정 설정 탭) ===== */
    .account-item { display: flex; align-items: center; gap: 8px; padding: 12px; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 8px; margin-bottom: 8px; flex-wrap: wrap; }
    .account-item select { padding: 8px 10px; border: 1px solid var(--grey-300); border-radius: 6px; font-size: 14px; background: var(--white); min-width: 100px; }
    .account-item input { padding: 8px 10px; border: 1px solid var(--grey-300); border-radius: 6px; font-size: 16px; flex: 1; min-width: 80px; }
    .account-item .pw-toggle { background: none; border: 1px solid var(--grey-300); border-radius: 6px; padding: 0 8px; cursor: pointer; font-size: 14px; height: 36px; }

    /* ===== 광고 설정 계정 헤더 배지 ===== */
    .platform-badge { display: inline-block; padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 700; margin-right: 8px; }
    .platform-badge.baemin { background: var(--baemin-50); color: var(--baemin-600); }
    .platform-badge.coupang { background: var(--coupang-50); color: var(--coupang-600); }
    .platform-badge.yogiyo { background: var(--yogiyo-50); color: var(--yogiyo-600); }

    /* ===== 품절/숨김 탭 ===== */
    .menu-action-buttons { display: flex; gap: 12px; margin-top: 12px; }
    .action-btn { flex: 1; padding: 16px; font-size: 16px; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; color: var(--white); transition: all 0.2s; }
    .action-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
    .action-btn:active { transform: translateY(0); }
    .action-btn.soldout { background: var(--yogiyo-300); }
    .action-btn.soldout:hover { background: var(--yogiyo-400); }
    .action-btn.hidden-btn { background: var(--hidden-600); }
    .action-btn.hidden-btn:hover { background: var(--hidden-700); }
    .action-btn.selling { background: var(--selling-500); }
    .action-btn.selling:hover { background: var(--selling-600); }
    .action-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .container { padding: 12px; }
      .header { padding: 12px 16px; }
      .header h1 { font-size: 17px; }
      .tab { padding: 8px 4px; font-size: 12px; white-space: nowrap; }
      .card { padding: 16px; }
      .controls { flex-direction: column; }
      .controls .btn { width: 100%; text-align: center; }
      .manual-run { flex-direction: column; }
      .manual-run .btn { width: 100%; text-align: center; }
      .form-row { flex-direction: column; gap: 4px; }
      .account { padding: 12px; }
      .store { padding: 10px; }
      .budget-item { gap: 3px; }
      .budget-time { flex-shrink: 0; }
      .budget-item select[data-budget-hour],
      .budget-item select[data-budget-minute] { width: 50px; padding: 5px 2px; font-size: 13px; }
      .budget-item input[data-budget-amount] { min-width: 50px; padding: 5px 6px; font-size: 13px; }
      .budget-value { min-width: 0; gap: 3px; }
      .log-container { padding: 10px 8px; }
      .log-bubble .bubble { font-size: 13px; padding: 8px 12px; }
      .log-bubble { max-width: 100%; }
      .schedule-item { font-size: 12px; }
      .schedule-store { font-size: 11px; }
      .user-card-info { grid-template-columns: 1fr; }
      .user-card-actions { gap: 4px; }
      .user-card-actions .btn { flex: 1; min-width: calc(50% - 4px); text-align: center; }
      .user-actions { flex-direction: column; gap: 4px; }
      .user-actions .btn { width: 100%; text-align: center; font-size: 11px; padding: 6px 8px; }
      .account-item { flex-direction: column; align-items: stretch; }
      .account-item select { width: 100%; }
      .menu-action-buttons { flex-direction: column; gap: 8px; }
    }
    @media (max-width: 380px) {
      .header h1 { font-size: 15px; }
      .header .status { font-size: 12px; }
      .budget-item input[data-budget-hour],
      .budget-item input[data-budget-minute] { width: 40px; }
    }

    /* Custom Modal System */
    .custom-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity 0.2s; }
    .custom-modal-overlay.show { opacity: 1; }
    .custom-modal-box { background: var(--white); border-radius: 14px; padding: 24px; max-width: 400px; width: 100%; box-shadow: 0 8px 32px rgba(0,0,0,0.15); transform: translateY(10px); transition: transform 0.2s; }
    .custom-modal-overlay.show .custom-modal-box { transform: translateY(0); }
    .custom-modal-msg { font-size: 15px; line-height: 1.6; color: var(--grey-800); white-space: pre-wrap; margin-bottom: 20px; word-break: break-word; }
    .custom-modal-input { width: 100%; padding: 12px 14px; border: 1px solid var(--grey-300); border-radius: 8px; font-size: 16px; margin-bottom: 16px; }
    .custom-modal-input:focus { outline: none; border-color: var(--primary-400); }
    .custom-modal-buttons { display: flex; gap: 8px; }
    .custom-modal-buttons button { flex: 1; padding: 12px; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
    .custom-modal-buttons .cm-ok { background: var(--primary-400); color: var(--white); }
    .custom-modal-buttons .cm-ok:hover { background: var(--primary-700); }
    .custom-modal-buttons .cm-cancel { background: var(--grey-200); color: var(--grey-700); }
    .custom-modal-buttons .cm-cancel:hover { background: var(--grey-300); }
    .custom-modal-buttons .cm-danger { background: var(--danger-400); color: var(--white); }
    .custom-modal-buttons .cm-danger:hover { background: var(--danger-600); }
