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

:root {
  --bg:       #010f0f;
  --surface:  #011a19;
  --surface2: #022b29;
  --surface3: #033c39;
  --border:   #0a4a46;
  --border2:  #0d6660;
  --accent:   #00ffcc;
  --accent2:  #00ccaa;
  --accent3:  #005250;
  --accent4:  #006666;
  --text:     #d4fff7;
  --text2:    #7bbfb8;
  --text3:    #3d7a74;
  --green:    #00ffcc;
  --red:      #ff4f4f;
  --yellow:   #f59e0b;
  --orange:   #f97316;
  --radius:   10px;
  --glow:     0 0 14px rgba(0,255,204,.22);
  --glow-sm:  0 0 8px  rgba(0,255,204,.15);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  min-height: 100vh;
}

/* ── LOGIN ── */
#login-screen {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, #012e2b 0%, var(--bg) 65%);
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 44px 40px;
  width: 380px;
  box-shadow: 0 0 60px rgba(0,255,204,.08), 0 24px 60px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.login-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
}
.login-logo img { height: 36px; }
.login-logo span { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -.5px; }
.login-card p { color: var(--text2); margin-bottom: 28px; font-size: 13px; }
.error-msg {
  background: rgba(255,79,79,.12); border: 1px solid rgba(255,79,79,.4);
  color: #ff9494; padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; font-size: 13px;
}

/* ── LAYOUT ── */
#main-layout { display: flex; min-height: 100vh; }
#main-right  { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
#content     { flex: 1; overflow: auto; padding: 28px; }

/* ── TOPBAR ── */
#topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  flex-shrink: 0;
  position: relative;
}
#topbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,204,.3), transparent);
}
.topbar-inner  { display: flex; align-items: center; gap: 16px; }
.search-wrap   { position: relative; flex: 1; max-width: 440px; }
.search-icon   { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 14px; pointer-events: none; opacity: .6; }
.search-wrap input { padding-left: 32px; background: var(--surface2); }
.search-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 10px; z-index: 50; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.6), 0 0 20px rgba(0,255,204,.06);
}
.search-item  { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; font-size: 13px; transition: background .12s; }
.search-item:hover { background: var(--surface2); }
.search-item-icon  { font-size: 16px; }
.search-item-title { flex: 1; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-empty { padding: 16px; text-align: center; color: var(--text2); font-size: 13px; }
.topbar-right { display: flex; gap: 8px; margin-left: auto; }

/* ── SIDEBAR ── */
#sidebar {
  width: 230px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 0; flex-shrink: 0;
  position: relative;
}
#sidebar::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,255,204,.25), transparent);
  pointer-events: none;
}
.sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-logo img { height: 28px; }
.sidebar-logo-text { display: flex; flex-direction: column; }
.sidebar-logo-text strong { font-size: 15px; font-weight: 800; color: var(--accent); letter-spacing: -.3px; }
.sidebar-logo-text span { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-top: 1px; }
.nav-section { padding: 6px 12px 4px; font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px; cursor: pointer; color: var(--text2);
  transition: all .15s; border-left: 3px solid transparent;
  font-size: 13px; font-weight: 500;
  position: relative;
}
.nav-item:hover { color: var(--text); background: rgba(0,255,204,.04); }
.nav-item.active {
  color: var(--accent); background: rgba(0,255,204,.07);
  border-left-color: var(--accent);
  text-shadow: 0 0 12px rgba(0,255,204,.4);
}
.nav-icon { font-size: 15px; width: 20px; text-align: center; }
.sidebar-bottom { margin-top: auto; padding: 14px 16px; border-top: 1px solid var(--border); }
.user-chip { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent3), var(--accent4));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; color: var(--accent); flex-shrink: 0;
  box-shadow: var(--glow-sm);
}
.user-chip .info   { flex: 1; overflow: hidden; }
.user-chip .uname  { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 13px; }
.user-chip .urole  { font-size: 11px; color: var(--text3); }
.btn-logout { background: none; border: none; color: var(--text3); cursor: pointer; font-size: 16px; padding: 4px; transition: color .15s; }
.btn-logout:hover { color: var(--red); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px; border: none;
  cursor: pointer; font-size: 13px; font-weight: 600; transition: all .15s;
}
.btn-primary {
  background: var(--accent); color: #011a19;
  box-shadow: 0 0 14px rgba(0,255,204,.3);
}
.btn-primary:hover { background: #33ffda; box-shadow: 0 0 20px rgba(0,255,204,.45); }
.btn-danger  { background: rgba(255,79,79,.15); color: var(--red); border: 1px solid rgba(255,79,79,.3); }
.btn-danger:hover  { background: var(--red); color: #fff; }
.btn-ghost {
  background: var(--surface2); color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,255,204,.05); }
.btn-sm { padding: 5px 11px; font-size: 12px; }
.btn-icon {
  background: none; border: none; cursor: pointer;
  color: var(--text3); font-size: 15px; padding: 4px 6px; border-radius: 6px;
  transition: all .15s;
}
.btn-icon:hover { background: var(--surface2); color: var(--accent); }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700; color: var(--text3);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .6px;
}
input, select, textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 9px 12px;
  font-size: 14px; outline: none; transition: border .15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,255,204,.1);
}
textarea { resize: vertical; min-height: 80px; }
select option { background: var(--surface2); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 20px; backdrop-filter: blur(4px);
}
.modal {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 0 50px rgba(0,0,0,.7), 0 0 30px rgba(0,255,204,.06);
  position: relative;
}
.modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.modal-body   { padding: 20px 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

/* ── PAGE HEADER ── */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.page-header h2 { font-size: 20px; font-weight: 800; color: var(--text); }

/* ── STAT CARDS ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 14px; margin-bottom: 28px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,204,.2), transparent);
}
.stat-card:hover { border-color: var(--border2); box-shadow: var(--glow-sm); }
.stat-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 800; color: var(--text); }
.stat-sub   { font-size: 12px; color: var(--text2); margin-top: 4px; }

/* ── KANBAN ── */
.kanban-board { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 16px; }
.kanban-col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 240px; width: 240px;
  flex-shrink: 0; display: flex; flex-direction: column;
  max-height: calc(100vh - 185px);
}
.kanban-col-header {
  padding: 13px 14px 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.kanban-col-title { font-weight: 700; font-size: 12px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .4px; color: var(--text2); }
.stage-dot   { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.kanban-col-sum  { font-size: 11px; color: var(--accent); font-weight: 700; }
.kanban-cards { padding: 10px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.deal-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 13px; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.deal-card:hover { border-color: var(--border2); box-shadow: 0 0 12px rgba(0,255,204,.08); }
.deal-card-title { font-weight: 700; margin-bottom: 6px; font-size: 13px; color: var(--text); }
.deal-card-meta  { font-size: 11px; color: var(--text2); display: flex; flex-direction: column; gap: 3px; }
.deal-card-value { font-weight: 800; color: var(--accent); font-size: 13px; margin-top: 8px; text-shadow: 0 0 10px rgba(0,255,204,.4); }
.deal-card-owner { font-size: 11px; color: var(--text3); margin-top: 3px; }
.kanban-add { padding: 8px 10px; }
.kanban-add button {
  width: 100%; background: none; border: 1px dashed var(--border2);
  color: var(--text3); border-radius: 8px; padding: 8px;
  cursor: pointer; font-size: 12px; transition: all .15s;
}
.kanban-add button:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,255,204,.04); }

/* ── TABLE ── */
.table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th {
  font-size: 11px; text-transform: uppercase; letter-spacing: .6px;
  color: var(--text3); padding: 11px 16px; text-align: left;
  background: var(--surface2); border-bottom: 1px solid var(--border);
  font-weight: 700;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,255,204,.025); }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-admin { background: rgba(0,255,204,.12); color: var(--accent); border: 1px solid rgba(0,255,204,.2); }
.badge-sales { background: rgba(0,200,170,.1);  color: var(--accent2); border: 1px solid rgba(0,200,170,.2); }
.badge-stage { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.s-neu        { background: rgba(123,191,184,.1);  color: #7bbfb8;  border: 1px solid rgba(123,191,184,.2); }
.s-kontakt    { background: rgba(0,255,204,.1);    color: var(--accent); border: 1px solid rgba(0,255,204,.2); }
.s-angebot    { background: rgba(245,158,11,.1);   color: #fbbf24;  border: 1px solid rgba(245,158,11,.2); }
.s-verhandlung{ background: rgba(249,115,22,.1);   color: #fb923c;  border: 1px solid rgba(249,115,22,.2); }
.s-gewonnen   { background: rgba(0,255,204,.15);   color: var(--accent); border: 1px solid rgba(0,255,204,.3); }
.s-verloren   { background: rgba(255,79,79,.1);    color: #ff8080;  border: 1px solid rgba(255,79,79,.2); }

/* stage dots */
.dot-neu        { background: #7bbfb8; }
.dot-kontakt    { background: var(--accent); box-shadow: 0 0 6px rgba(0,255,204,.6); }
.dot-angebot    { background: #fbbf24; }
.dot-verhandlung{ background: #fb923c; }
.dot-gewonnen   { background: var(--accent); box-shadow: 0 0 6px rgba(0,255,204,.8); }
.dot-verloren   { background: #ff8080; }

/* ── ACTIVITIES ── */
.activity-list { display: flex; flex-direction: column; gap: 10px; }
.activity-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color .15s;
}
.activity-item:hover { border-color: var(--border2); }
.activity-item.done { opacity: .45; }
.act-icon {
  font-size: 18px; flex-shrink: 0; width: 36px; height: 36px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.act-content  { flex: 1; }
.act-desc     { font-weight: 700; margin-bottom: 5px; color: var(--text); }
.act-meta     { font-size: 12px; color: var(--text2); display: flex; gap: 14px; flex-wrap: wrap; }
.act-actions  { display: flex; gap: 6px; align-items: center; }
.overdue      { color: var(--red) !important; }

/* ── TOOLBAR ── */
.toolbar { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.search-input { flex: 1; min-width: 200px; }
.search-input input { background: var(--surface); }

/* ── SECTION TITLE ── */
.section-title { font-size: 14px; font-weight: 700; color: var(--text2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .4px; }

/* ── CHART ── */
.chart-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px 8px; overflow-x: auto; }
.chart-empty { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; color: var(--text2); font-size: 13px; }

/* ── COMMENTS ── */
.comment-item { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.comment-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.comment-author { font-weight: 700; font-size: 12px; color: var(--accent); }
.comment-time   { font-size: 11px; color: var(--text3); }
.comment-text   { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ── DROPZONE / FILES ── */
.dropzone {
  border: 2px dashed var(--border2); border-radius: var(--radius);
  padding: 44px; text-align: center; transition: all .2s; margin-bottom: 20px;
  cursor: pointer; background: rgba(0,255,204,.02);
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--accent); background: rgba(0,255,204,.06);
  box-shadow: inset 0 0 40px rgba(0,255,204,.04), var(--glow-sm);
}
.drop-icon { font-size: 44px; margin-bottom: 12px; }
.dropzone p { color: var(--text2); margin-bottom: 4px; font-size: 14px; }
.upload-bar {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 8px; padding: 10px 14px; font-size: 13px; color: var(--accent);
  margin-bottom: 10px;
}

/* ── CALENDAR ── */
.calendar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cal-header-row { display: grid; grid-template-columns: repeat(7,1fr); background: var(--surface2); border-bottom: 1px solid var(--border); }
.cal-header-cell { padding: 10px 8px; text-align: center; font-size: 11px; font-weight: 800; color: var(--text3); text-transform: uppercase; letter-spacing: .7px; }
.cal-row  { display: grid; grid-template-columns: repeat(7,1fr); border-bottom: 1px solid var(--border); }
.cal-row:last-child { border-bottom: none; }
.cal-cell { min-height: 96px; padding: 8px; border-right: 1px solid var(--border); vertical-align: top; }
.cal-cell:last-child { border-right: none; }
.cal-empty { background: rgba(0,0,0,.15); }
.cal-today { background: rgba(0,255,204,.04); }
.cal-day-num { font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text2); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.today-num  { background: var(--accent); color: #011a19; font-weight: 900; box-shadow: 0 0 10px rgba(0,255,204,.5); }
.cal-events { display: flex; flex-direction: column; gap: 3px; }
.cal-event  { font-size: 11px; padding: 2px 6px; border-radius: 4px; background: rgba(0,255,204,.1); border: 1px solid rgba(0,255,204,.15); color: var(--text); cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: background .12s; }
.cal-event:hover { background: rgba(0,255,204,.2); }
.cal-done { opacity: .45; text-decoration: line-through; }
.cal-overdue { background: rgba(255,79,79,.12); border-color: rgba(255,79,79,.25); color: #ff9494; }
.cal-more   { font-size: 11px; color: var(--text3); padding: 2px 4px; }

/* ── DEAL HISTORY ── */
.history-list { display: flex; flex-direction: column; gap: 6px; max-height: 200px; overflow-y: auto; }
.history-item { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; }
.history-action { font-size: 12px; font-weight: 700; color: var(--accent); }
.history-detail { font-size: 12px; color: var(--text); }
.history-meta   { font-size: 11px; color: var(--text3); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text2); }
.empty-state .icon { font-size: 40px; margin-bottom: 12px; opacity: .6; }
.empty-state p { font-size: 15px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent3); }

/* ── TAGS ── */
.tag-pill {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 600;
  background: rgba(0,255,204,.08); color: var(--accent2);
  border: 1px solid rgba(0,255,204,.18);
  margin: 2px 2px 2px 0; white-space: nowrap;
}
.tag-sm { padding: 2px 7px; font-size: 10px; }

/* ── DUBLETTEN-WARNUNG ── */
.dup-warning {
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.3);
  color: #fbbf24; padding: 8px 12px; border-radius: 8px;
  margin-bottom: 14px; font-size: 12px;
}

/* ── PROGRESS BAR ── */
.progress-bar-wrap {
  flex: 1; background: var(--surface3); border-radius: 4px;
  height: 6px; overflow: hidden; min-width: 60px;
}
.progress-bar-fill { height: 100%; border-radius: 4px; background: var(--accent); transition: width .3s; }

/* ── HAMBURGER ── */
.hamburger-btn {
  display: none;
  background: none; border: 1px solid var(--border2);
  color: var(--text2); border-radius: 8px;
  width: 36px; height: 36px;
  cursor: pointer; font-size: 18px;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s;
}
.hamburger-btn:hover { border-color: var(--accent); color: var(--accent); }

.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 49;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 768px) {
  .hamburger-btn { display: flex; }
  .topbar-right { display: none; }

  #sidebar {
    position: fixed; left: -240px; top: 0; bottom: 0;
    width: 230px; z-index: 50;
    transition: left .28s cubic-bezier(.4,0,.2,1);
    box-shadow: none;
  }
  #sidebar.open {
    left: 0;
    box-shadow: 4px 0 40px rgba(0,0,0,.6), 0 0 30px rgba(0,255,204,.06);
  }

  #content { padding: 14px; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .kanban-board { gap: 10px; }
  .kanban-col { min-width: 220px; width: 220px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modal { max-width: 100%; border-radius: 12px; }
  .table-wrap { overflow-x: auto; }
  table { min-width: 500px; }
  .login-card { width: 92vw; padding: 32px 24px; }
}

@media (max-width: 480px) {
  #main-right { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  #content { padding: 10px; }
  .page-header h2 { font-size: 17px; }
  .kanban-col { min-width: 200px; width: 200px; }
  .login-card { width: 96vw; padding: 28px 18px; }
  .modal-body { padding: 16px; }
  .modal-footer { padding: 12px 16px; }
  .topbar-inner { gap: 10px; }
}
