/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --bg-card-hover: #22263a;
  --bg-input: #141620;
  --border: #2a2d3a;
  --border-focus: #6366f1;
  --text: #e2e8f0;
  --text-muted: #8892a8;
  --text-dim: #5a6178;
  --primary: #6366f1;
  --primary-hover: #818cf8;
  --primary-bg: rgba(99, 102, 241, 0.12);
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.12);
  --sidebar-w: 260px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --transition: 0.2s ease;
}

html { font-size: 15px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-hover); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ===== SIDEBAR ===== */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  position: fixed;
  left: 0; top: 0;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform var(--transition);
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.5));
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.user-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.user-name { font-weight: 600; }
.user-role { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.nav-links {
  list-style: none;
  padding: 12px;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition);
}

.nav-link:hover {
  background: var(--primary-bg);
  color: var(--text);
}

.nav-icon { font-size: 18px; width: 24px; text-align: center; }

.sidebar-footer {
  padding: 12px;
  border-top: 1px solid var(--border);
}

.logout-link:hover { background: var(--danger-bg); color: var(--danger); }

/* ===== MAIN CONTENT ===== */
.content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.subtitle {
  color: var(--text-muted);
  margin-top: 4px;
}

.project-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.meta-item {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stats-grid-2 { margin-bottom: 32px; }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-active .stat-value { color: var(--primary); }
.stat-completed .stat-value { color: var(--success); }
.stat-pending .stat-value { color: var(--warning); }
.stat-urgent .stat-value { color: var(--danger); }
.stat-money .stat-value { color: var(--primary); }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  animation: slideIn 0.3s ease;
}

.alert-error { background: var(--danger-bg); border: 1px solid var(--danger); color: #fca5a5; }
.alert-warning { background: var(--warning-bg); border: 1px solid rgba(245, 158, 11, 0.3); color: #fcd34d; }
.alert-success { background: var(--success-bg); border: 1px solid var(--success); color: #6ee7b7; }

/* ===== SECTIONS ===== */
.section { margin-bottom: 40px; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header .section-title { margin-bottom: 0; }

/* ===== PROJECT GRID ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
  color: var(--text);
  display: block;
}

.project-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.project-card-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.project-card-date {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ===== BADGES ===== */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.status-badge-sm {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}

.priority-badge {
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-muted);
}

.priority-urgent { color: var(--danger); font-weight: 600; }
.priority-high { color: var(--warning); }
.priority-medium { color: var(--primary); }
.priority-low { color: var(--text-dim); }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.card-highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-bg), var(--bg-card));
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== PROJECT DETAIL LAYOUT ===== */
.project-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.detail-block {
  margin-bottom: 16px;
}

.detail-block label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-block p {
  color: var(--text);
  white-space: pre-wrap;
}

/* ===== FORMS ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; }

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  padding-top: 8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(99,102,241,0.4); }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #34d399; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #f87171; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); background: var(--bg-card-hover); }

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-sm { padding: 6px 12px; font-size: 12px; }

/* ===== FILE UPLOAD ===== */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.file-upload-icon { font-size: 40px; margin-bottom: 8px; }
.file-upload-label { color: var(--primary); cursor: pointer; font-weight: 500; }
.file-upload-hint { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

.file-list { margin-top: 12px; }
.file-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  font-size: 13px;
}

/* ===== FILES GRID ===== */
.files-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.file-item:hover { background: var(--bg-card-hover); }

.file-preview {
  width: 48px; height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.file-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.file-icon-large {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.file-info { flex: 1; min-width: 0; }
.file-name { font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-meta { font-size: 12px; color: var(--text-dim); }

.upload-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.upload-form input[type="file"] {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== MESSAGES ===== */
.messages-list {
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border-left: 3px solid transparent;
}

.message-developer { border-left-color: var(--primary); }
.message-client { border-left-color: var(--success); }
.message-request { background: var(--warning-bg); border-left-color: var(--warning); }

.message-badge {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.message-header strong { font-size: 14px; }
.message-time { font-size: 12px; color: var(--text-dim); }
.message-content { font-size: 14px; white-space: pre-wrap; }

.message-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}

.message-form textarea:focus {
  outline: none;
  border-color: var(--border-focus);
}

.message-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input { accent-color: var(--primary); }

/* ===== INVOICES ===== */
.invoices-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invoice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.invoice-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.invoice-card-header h3 { font-size: 16px; }
.invoice-project { font-size: 13px; color: var(--text-muted); }

.invoice-amounts-row {
  display: flex;
  gap: 24px;
  margin: 12px 0;
}

.invoice-amount span { display: block; font-size: 12px; color: var(--text-dim); }
.invoice-amount strong { font-size: 16px; }

.invoice-due { font-size: 13px; color: var(--text-muted); }

.invoice-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.invoices-mini {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invoice-item {
  padding: 14px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.invoice-id { font-weight: 600; font-size: 14px; }
.invoice-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }

.invoice-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.invoice-label { display: block; font-size: 11px; color: var(--text-dim); }
.invoice-value { font-size: 14px; font-weight: 600; }

.invoice-form {
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  padding: 14px;
}

/* ===== PAYMENTS ===== */
.payment-details {
  margin-top: 10px;
}

.payment-details summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  list-style: none;
}

.payment-details summary::-webkit-details-marker { display: none; }

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.payment-form input,
.payment-form select {
  padding: 8px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
}

.payment-form input:focus,
.payment-form select:focus {
  outline: none;
  border-color: var(--border-focus);
}

.payments-mini {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.payments-mini h4 {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== STATUS FORM ===== */
.status-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.status-select {
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  min-width: 180px;
}

.status-select:focus {
  outline: none;
  border-color: var(--border-focus);
}

/* ===== ACTIVITY & TIMELINE ===== */
.activity-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child { border-bottom: none; }

.activity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
  flex-shrink: 0;
}

.activity-content { font-size: 14px; }
.activity-user { font-weight: 600; }
.activity-meta { color: var(--text-dim); font-size: 12px; }

.timeline { display: flex; flex-direction: column; }

.timeline-item {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 24px;
  bottom: -8px;
  width: 1px;
  background: var(--border);
}

.timeline-item:last-child::before { display: none; }

.timeline-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 5px;
  flex-shrink: 0;
}

.timeline-content p { font-size: 13px; }
.timeline-time { font-size: 11px; color: var(--text-dim); }

/* ===== FILTERS ===== */
.filter-select {
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.filter-select:focus { outline: none; border-color: var(--border-focus); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-dim);
}

.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-text { color: var(--text-dim); font-size: 14px; }

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px;
  text-align: center;
}

.error-icon { font-size: 64px; margin-bottom: 16px; }
.error-page h1 { font-size: 32px; margin-bottom: 8px; }
.error-page p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== LOGIN PAGE ===== */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow);
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo {
  font-size: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.login-header h1 {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.login-form .form-group { margin-bottom: 18px; }

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card, .project-card, .stat-card, .invoice-card {
  animation: fadeIn 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    position: fixed;
  }
  
  .sidebar.open { transform: translateX(0); }
  
  .content {
    margin-left: 0;
  }
  
  .content-inner {
    padding: 20px 16px;
  }

  .page-header h1 { font-size: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .invoice-amounts-row { flex-direction: column; gap: 8px; }

  /* Mobile nav toggle */
  body::before {
    content: '☰';
    position: fixed;
    top: 16px;
    left: 16px;
    font-size: 24px;
    z-index: 200;
    cursor: pointer;
    background: var(--bg-card);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
  }
}
