  :root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #e8f0fb;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-800: #262626;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
  }

  .app-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 375px;
  }

  /* Phone Frame */
  .phone {
    width: 375px;
    min-height: 667px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    border: 8px solid #111;
    flex-shrink: 0;
  }

  .phone-label {
    color: #aaa;
    font-size: 12px;
    text-align: center;
    margin-bottom: 8px;
    font-family: monospace;
    letter-spacing: 1px;
  }

  .screen { display: none; height: 100%; min-height: 651px; padding-bottom: 60px; }
  .screen.active { display: flex; flex-direction: column; }

  /* Nav Tabs (Desktop Preview) */
  .nav-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .nav-tab {
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    background: #2a2a4a;
    color: #aaa;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .nav-tab.active { background: var(--primary); color: white; }
  .nav-tab:hover { background: #3a3a6a; color: white; }

  /* ── LOGIN SCREEN ── */
  .login-screen {
    background: linear-gradient(135deg, #0066cc, #0044aa);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 0;
    padding-bottom: 0;
  }

  .login-logo { margin-bottom: 1rem; color: white; }
  .login-title { color: white; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; }
  .login-subtitle { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 2rem; }

  .login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100%;
    max-width: 280px;
  }

  .form-label { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 0.4rem; display: block; }

  .pin-display {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 1rem 0;
  }

  .pin-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: white;
    transition: background 0.2s;
  }

  .pin-dot.filled { background: var(--primary); border-color: var(--primary); }

  .pin-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 0.5rem;
  }

  .pin-btn {
    aspect-ratio: 1;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: white;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    color: var(--gray-800);
  }

  .pin-btn:active, .pin-btn:hover { background: var(--primary-light); }
  .pin-btn.delete { font-size: 1rem; color: var(--gray-400); }

  /* ── HEADER ── */
  .app-header {
    background: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .header-logo { font-weight: 700; color: var(--primary); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
  .header-title { font-weight: 600; color: var(--gray-800); font-size: 0.95rem; }
  .header-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
  }

  /* ── BOTTOM NAV ── */
  .bottom-nav {
    display: flex;
    background: white;
    border-top: 1px solid var(--gray-200);
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 20;
  }

  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 2px 12px;
    gap: 3px;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 0.6rem;
    font-weight: 500;
    transition: color 0.2s;
    border: none;
    background: none;
  }

  .nav-item.active { color: var(--primary); }
  .nav-item svg { width: 22px; height: 22px; }

  /* ── CONTENT ── */
  .content { flex: 1; overflow-y: auto; background: var(--gray-100); }

  /* ── TIMESHEET SCREEN (Wochenzettel) ── */
  .week-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--primary);
    color: white;
  }

  .week-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1rem;
  }

  .week-summary {
    background: var(--primary-dark);
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
  }
  
  .week-summary-total {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .day-card {
    background: white;
    margin: 12px 16px;
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 8px;
  }

  .day-name { font-weight: 600; color: var(--gray-800); font-size: 0.9rem; }
  .day-total { font-weight: 700; color: var(--primary); font-size: 0.9rem; }

  /* Entry Block */
  .entry-block {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--gray-200);
  }
  .entry-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .input-group label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .time-input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    text-align: center;
    color: var(--gray-800);
    background: var(--gray-100);
  }
  
  .time-input:focus { outline: none; border-color: var(--primary); background: white; }

  .reason-input {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #fca5a5;
    background: #fef2f2;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--gray-800);
  }
  .reason-input:focus { outline: none; border-color: var(--danger); }
  .reason-input.filled { border-color: var(--gray-200); background: white; }

  .project-selector {
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.85rem;
    background: white;
  }

  .project-image {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }

  .project-name { font-weight: 500; color: var(--gray-600); }

  .attachment-area {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .btn-attachment {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    text-align: left;
  }
  
  .btn-attachment:hover { text-decoration: underline; }

  .attachment-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    width: max-content;
  }

  .attachment-item .remove { cursor: pointer; color: var(--danger); font-weight: bold; }

  .btn-add-entry {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: none;
    border: 1px dashed var(--gray-400);
    border-radius: var(--radius);
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
  }
  .btn-add-entry:hover { background: var(--gray-100); }

  .btn-submit-week {
    margin: 16px;
    width: calc(100% - 32px);
    padding: 14px;
    background: var(--success);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  }

  .day-empty { opacity: 0.6; }

  /* ── PROJECT SCREEN (New) ── */
  .btn-add-project {
    margin: 16px 16px 0;
    width: calc(100% - 32px);
    padding: 12px;
    background: white;
    color: var(--primary);
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
  }
  
  .btn-add-project:hover { background: var(--primary-light); }

  .project-card {
    background: white;
    margin: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .project-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-200);
  }

  .project-card-content { padding: 14px; }
  .project-card-title { font-weight: 600; font-size: 1rem; color: var(--gray-800); }
  .project-card-sub { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; display: flex; align-items: center; gap: 4px;}
  
  .project-badges { margin-top: 12px; display: flex; gap: 8px; }

  /* ── OVERVIEW SCREEN ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px;
  }

  .stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .stat-label { font-size: 0.7rem; color: var(--gray-400); margin-bottom: 4px; }
  .stat-value { font-size: 1.4rem; font-weight: 700; color: var(--gray-800); }
  .stat-sub { font-size: 0.7rem; color: var(--gray-400); margin-top: 2px; }
  .stat-value.positive { color: var(--success); }
  .stat-value.warning { color: var(--warning); }

  .month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid var(--gray-200);
  }

  .month-nav {
    background: none;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
  }

  .month-nav:hover { background: var(--primary-light); }
  .section-title {
    padding: 12px 16px 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .entry-card {
    background: white;
    margin: 0 16px 8px;
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .entry-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary-dark);
  }
  .entry-icon svg { width: 18px; height: 18px; }

  .entry-icon.work { background: var(--primary-light); }
  .entry-icon.vacation { background: #eff6ff; color: #0066cc; }
  .entry-icon.sick { background: #fef2f2; color: #dc2626; }
  .entry-icon.night { background: #fff7ed; color: #ea580c; }

  .entry-info { flex: 1; }
  .entry-title { font-size: 0.85rem; font-weight: 500; color: var(--gray-800); }
  .entry-sub { font-size: 0.75rem; color: var(--gray-400); margin-top: 2px; }
  .entry-hours { font-size: 0.9rem; font-weight: 600; color: var(--gray-600); }


  /* ── ABSENCE SCREEN ── */
  .absence-header {
    background: white;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
  }

  .absence-tabs {
    display: flex;
    gap: 8px;
  }

  .absence-tab {
    flex: 1;
    padding: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: white;
    font-size: 0.8rem;
    cursor: pointer;
    text-align: center;
    color: var(--gray-600);
  }

  .absence-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

  .absence-card {
    background: white;
    margin: 8px 16px;
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .absence-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .absence-icon svg { width: 20px; height: 20px; }

  .pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
  }

  .pill.approved { background: #f0fdf4; color: #16a34a; }
  .pill.pending { background: #fffbeb; color: #d97706; }
  .pill.rejected { background: #fef2f2; color: #dc2626; }

  .fab {
    position: absolute;
    bottom: 80px;
    right: 16px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,102,204,0.4);
    display: flex; align-items: center; justify-content: center;
  }

  /* ── SETTINGS SCREEN ── */
  .settings-profile {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 24px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
  }

  .profile-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.4);
  }

  .profile-name { font-size: 1.1rem; font-weight: 700; }
  .profile-role { font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }
  .profile-hours { font-size: 0.75rem; opacity: 0.7; margin-top: 4px; }

  .settings-section { margin: 12px 0; }

  .settings-item {
    background: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
  }

  .settings-item:first-child { border-radius: var(--radius) var(--radius) 0 0; margin-top: 0; }
  .settings-item:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: none; }

  .settings-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary-dark);
  }
  .settings-icon svg { width: 18px; height: 18px; }

  .settings-label { flex: 1; }
  .settings-title { font-size: 0.85rem; font-weight: 500; color: var(--gray-800); }
  .settings-sub { font-size: 0.75rem; color: var(--gray-400); margin-top: 1px; }
  .settings-arrow { color: var(--gray-400); font-size: 0.9rem; }

  .lang-flag {
    background: none;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 4px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--gray-600);
    font-weight: 500;
  }

  .lang-flag.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

  /* ── ONBOARDING ── */
  .onboarding-screen {
    background: white;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .onboarding-step {
    display: flex;
    gap: 6px;
    margin-bottom: 2rem;
  }

  .step-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
  }

  .step-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

  .onboarding-icon { color: var(--primary); margin-bottom: 1.5rem; }
  .onboarding-title { font-size: 1.3rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.5rem; text-align: center; }
  .onboarding-text { font-size: 0.85rem; color: var(--gray-400); text-align: center; line-height: 1.5; margin-bottom: 2rem; }

  .btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
  }

  .feature-list { width: 100%; margin-bottom: 2rem; }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
    color: var(--gray-600);
  }

  .feature-item:last-child { border-bottom: none; }

  .feature-check { color: var(--success); font-weight: bold; }

  /* Toast */
  .toast {
    position: absolute;
    top: 60px;
    left: 16px; right: 16px;
    background: #1a1a1a;
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  /* ── RESPONSIVE (echtes Handy / PWA) ── */
  @media (max-width: 600px) {
    body { padding: 0; background: #fff; }
    .app-shell { max-width: none; }
    .phone {
      width: 100%;
      max-width: none;
      min-height: 100vh;
      min-height: 100dvh;
      border: none;
      border-radius: 0;
      box-shadow: none;
    }
    .modal-backdrop { border-radius: 0; }
  }

  .desktop-hint {
    color: #555;
    font-size: 11px;
    text-align: center;
    margin-top: 6px;
  }

  /* ── ABSENCE MODAL (Bottom Sheet) ── */

  /* Backdrop: deckt den Phone-Container ab */
  .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 500;
    display: flex;
    align-items: flex-end;
    border-radius: 40px; /* gleich wie .phone */
    overflow: hidden;
    animation: backdropIn 0.2s ease;
  }

  @keyframes backdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Sheet: gleitet von unten hoch */
  .modal-sheet {
    width: 100%;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 0 0 24px;
    max-height: 88%;
    overflow-y: auto;
    animation: sheetUp 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }

  @keyframes sheetUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0);    }
  }

  /* Drag-Handle */
  .modal-handle {
    width: 36px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin: 12px auto 4px;
  }

  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 10px;
    border-bottom: 1px solid var(--gray-100);
  }

  .modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
  }

  .modal-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .modal-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Formularfelder */
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .form-group label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-600);
  }

  .form-group label .required-mark {
    color: var(--danger);
    margin-left: 2px;
  }

  .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--gray-800);
    background: var(--gray-50);
    box-sizing: border-box;
    transition: border-color 0.15s;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
  }

  .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
  }

  .form-control.error {
    border-color: var(--danger);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .form-error {
    font-size: 0.72rem;
    color: var(--danger);
    margin-top: 2px;
  }

  .form-days-hint {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    text-align: right;
    margin-top: -8px;
  }

  /* AU-Upload Bereich (erscheint nur bei Krank) */
  .au-upload-area {
    border: 1.5px dashed var(--gray-200);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    background: var(--gray-50);
    cursor: pointer;
    transition: border-color 0.15s;
  }

  .au-upload-area:hover { border-color: var(--primary); }

  .au-upload-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 6px;
    display: block;
  }

  .au-file-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--primary-dark);
    margin-top: 8px;
  }

  .au-file-pill .remove {
    margin-left: auto;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1;
  }

  /* Aktions-Buttons im Modal */
  .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px;
    margin-top: 4px;
  }

  .btn-modal-cancel {
    padding: 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    background: white;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
  }

  .btn-modal-save {
    padding: 12px;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
  }

  .btn-modal-save:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
