/* Zen+ Health Admin - Brand Colors */
:root {
  --zen-background: #dfe9ed;
  --zen-surface: #ffffff;
  --zen-primary: #005f7b;
  --zen-accent: #80EEE1;
  --zen-hover: #00A0AA;
  --zen-text: #005f7b;
  --zen-text-muted: #4a8a9e;
  --zen-border: #c5d8df;
  --zen-success: #10b981;
  --zen-warning: #f59e0b;
  --zen-error: #ef4444;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  background: var(--zen-background);
  color: var(--zen-text);
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--zen-primary);
  color: #fff;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.brand { 
  font-size: 20px; 
  letter-spacing: -0.5px;
}

.nav .user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav .user .email {
  color: var(--zen-accent);
  font-size: 13px;
}

/* Content */
main.content {
  padding: 28px 48px;
  max-width: 1700px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Panel */
.panel {
  background: var(--zen-surface);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 95, 123, 0.08);
  padding: 28px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* User detail header */
.user-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--zen-background);
}

.user-header-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--zen-primary);
  letter-spacing: -0.5px;
}

.user-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--zen-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--zen-hover);
}

/* Avatar */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.avatar-sm {
  width: 32px;
  height: 32px;
}

.avatar-lg {
  width: 64px;
  height: 64px;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.status-active {
  background: linear-gradient(135deg, var(--zen-accent), #5dd9cc);
  color: var(--zen-primary);
}

.status-inactive {
  background: #fef3c7;
  color: #92400e;
}

/* Access status badges */
.access-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.access-subscribed {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.access-trial {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.access-expired {
  background: #fee2e2;
  color: #dc2626;
}

.back-link {
  color: var(--zen-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--zen-border);
  transition: all 0.2s ease;
}

.back-link:hover {
  background: var(--zen-primary);
  color: #fff;
  border-color: var(--zen-primary);
}

/* User info grid */
.user-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--zen-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.info-value {
  font-size: 15px;
  color: var(--zen-primary);
  font-weight: 500;
}

.user-info-section {
  margin-bottom: 24px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

.tab-btn {
  background: var(--zen-surface);
  color: var(--zen-text-muted);
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 -2px 10px rgba(0, 95, 123, 0.05);
}

.tab-btn:hover {
  color: var(--zen-primary);
  transform: none;
  box-shadow: 0 -2px 10px rgba(0, 95, 123, 0.08);
}

.tab-btn.active {
  background: var(--zen-surface);
  color: var(--zen-primary);
  box-shadow: 0 -4px 16px rgba(0, 95, 123, 0.1);
  z-index: 1;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--zen-accent);
  border-radius: 3px 3px 0 0;
}

.tab-count {
  background: var(--zen-accent);
  color: var(--zen-primary);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
}

.tab-content {
  background: var(--zen-surface);
  border-radius: 0 12px 12px 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 95, 123, 0.08);
  animation: fadeIn 0.2s ease;
}

.tab-content .card {
  box-shadow: none;
  border: 1px solid var(--zen-border);
}

.tab-content .panel {
  box-shadow: none;
  border: 1px solid var(--zen-border);
}

.tab-content .cards-row {
  margin-bottom: 20px;
}

.tab-content .cards-row:last-child {
  margin-bottom: 0;
}

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

.info-row {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-item-wide {
  flex: 2;
  min-width: 280px;
}

.copy-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-field code {
  background: var(--zen-background);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  color: var(--zen-primary);
  border: 1px solid var(--zen-border);
}

.user-id-code {
  font-size: 11px;
  word-break: break-all;
}

.copy-btn {
  background: var(--zen-accent);
  color: var(--zen-primary);
  border: none;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: var(--zen-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* Cards */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.cards-row-schedule {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
  .cards-row-schedule {
    grid-template-columns: 1fr;
  }
}

.card-narrow {
  min-width: 280px;
}

.card-wide {
  min-width: 400px;
}

.card {
  background: var(--zen-surface);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 95, 123, 0.08);
  overflow: hidden;
}

.card-header {
  padding: 18px 24px;
  border-bottom: 2px solid var(--zen-background);
  background: linear-gradient(135deg, rgba(128, 238, 225, 0.1), rgba(0, 95, 123, 0.05));
}

.card-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--zen-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.card-body {
  padding: 24px;
}

/* Stats in cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--zen-background);
  border-radius: 12px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--zen-primary);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--zen-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-primary {
  background: linear-gradient(135deg, var(--zen-primary), #007a9e);
}

.stat-primary .stat-value {
  color: #fff;
}

.stat-primary .stat-label {
  color: var(--zen-accent);
}

.stat-secondary .stat-value {
  font-size: 28px;
}

/* Progress display (level + points) */
.progress-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.progress-level {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.level-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--zen-primary);
  line-height: 1;
}

.level-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--zen-text-muted);
}

.progress-points {
  text-align: right;
  background: var(--zen-background);
  padding: 12px 20px;
  border-radius: 12px;
}

.points-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--zen-primary);
}

.points-label {
  font-size: 12px;
  color: var(--zen-text-muted);
  margin-left: 4px;
}

/* Notifications card */
.notifications-card {
  margin-bottom: 0;
}

.notifications-table {
  margin-top: 0;
}

.notifications-table th {
  background: transparent;
  border-bottom: 2px solid var(--zen-border);
}

.notifications-table td {
  font-size: 13px;
  vertical-align: top;
}

.notif-date {
  white-space: nowrap;
  color: var(--zen-text-muted);
  font-size: 12px;
}

.notif-topic code {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* Topic color coding */
.topic-checkin {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
}

.topic-catalog {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.topic-calendar_event {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.topic-screening_due {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #5b21b6;
}

.topic-tasks_generated {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #9d174d;
}

.topic-default {
  background: var(--zen-background);
  color: var(--zen-primary);
}

.topic-announcement {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  color: #7c3aed;
}

/* Timeline-specific types */
.topic-work_start {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
  color: #c2410c;
}

.topic-work_end {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  color: #7c3aed;
}

.notif-title {
  font-weight: 600;
  color: var(--zen-primary);
}

/* Feedback table task cell */
.task-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.task-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Source badges */
code[class^="source-"] {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.source-catalog {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
}

.source-notification,
.source-notification_centre {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.source-timeline {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.source-debug {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
}

.source-timeline_too_early,
.source-timeline_too_late,
.source-timeline_already_completed,
.source-notification_expired {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  color: #9a3412;
}

.notif-desc {
  color: var(--zen-text-muted);
  max-width: 300px;
}

.notif-status .status-badge {
  font-size: 10px;
  padding: 4px 10px;
}

.status-read {
  background: var(--zen-background);
  color: var(--zen-text-muted);
}

.status-unread {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
}

/* Roles management */
.roles-card {
  margin-bottom: 24px;
}

.roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.role-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--zen-background);
  border: 2px solid var(--zen-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.role-toggle:hover {
  border-color: var(--zen-text-muted);
}

.role-toggle.role-active {
  background: linear-gradient(135deg, var(--zen-accent), #5dd9cc);
  border-color: var(--zen-accent);
}

.role-toggle.role-active .role-label {
  color: var(--zen-primary);
  font-weight: 600;
}

.role-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--zen-primary);
}

.role-label {
  font-size: 14px;
  color: var(--zen-text-muted);
  user-select: none;
}

.roles-status {
  margin-top: 12px;
  font-size: 13px;
  min-height: 20px;
}

/* Device info */
.device-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.device-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.device-platform {
  font-size: 24px;
  font-weight: 700;
  color: var(--zen-primary);
  text-transform: capitalize;
}

.device-version {
  font-size: 14px;
  color: var(--zen-text-muted);
  font-weight: 500;
}

.device-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.device-details span {
  font-size: 13px;
  color: var(--zen-text-muted);
  background: var(--zen-background);
  padding: 6px 12px;
  border-radius: 50px;
}

/* Login methods / Provider list */
.provider-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.provider-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--zen-background);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.provider-item:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 95, 123, 0.1);
}

.provider-item:last-child {
  margin-bottom: 0;
}

.provider-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.provider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--zen-surface);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.provider-icon svg {
  width: 18px;
  height: 18px;
}

.provider-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--zen-primary);
}

.provider-meta {
  font-size: 12px;
  color: var(--zen-text-muted);
  background: var(--zen-surface);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Subscription info */
.subscription-card {
  margin-bottom: 24px;
}

.subscription-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscription-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subscription-platform {
  font-size: 20px;
  font-weight: 700;
  color: var(--zen-primary);
}

.subscription-status {
  font-size: 10px;
}

.subscription-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.sub-detail {
  background: var(--zen-background);
  padding: 12px 16px;
  border-radius: 12px;
}

.sub-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--zen-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.sub-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--zen-primary);
}

/* Schedule list */
.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-item {
  padding: 14px 18px;
  background: var(--zen-background);
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--zen-primary);
  font-weight: 500;
  border-left: 4px solid var(--zen-accent);
  transition: all 0.2s ease;
}

.schedule-item:hover {
  transform: translateX(4px);
  border-left-color: var(--zen-hover);
}

.schedule-item:last-child {
  margin-bottom: 0;
}

/* Calendar list */
.calendar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.calendar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--zen-background);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.calendar-item:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 95, 123, 0.1);
}

.calendar-item:last-child {
  margin-bottom: 0;
}

.calendar-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calendar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--zen-surface);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.calendar-icon svg {
  width: 18px;
  height: 18px;
}

.calendar-icon-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 6px;
}

.calendar-icon-inline img {
  width: 16px;
  height: 16px;
}

.calendar-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--zen-primary);
}

.calendar-meta {
  font-size: 12px;
  color: var(--zen-text-muted);
  background: var(--zen-surface);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Empty state */
.empty-state {
  margin: 0;
  padding: 32px;
  text-align: center;
  color: var(--zen-text-muted);
  font-size: 14px;
  background: var(--zen-background);
  border-radius: 12px;
  border: 2px dashed var(--zen-border);
}

/* Form elements */
.form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--zen-primary);
}

input, textarea, button {
  font: inherit;
}

input[type="email"],
input[type="password"],
input[type="search"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--zen-border);
  border-radius: 12px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--zen-primary);
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--zen-accent);
  box-shadow: 0 0 0 3px rgba(128, 238, 225, 0.3);
}

button {
  cursor: pointer;
  background: var(--zen-accent);
  color: var(--zen-primary);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s ease;
}

button:hover {
  background: var(--zen-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 160, 170, 0.3);
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--zen-border);
  text-align: left;
}

th {
  font-weight: 700;
  color: var(--zen-primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--zen-background);
}

tr:hover td {
  background: rgba(128, 238, 225, 0.1);
}

/* Utilities */
.inline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.muted { color: var(--zen-text-muted); font-size: 14px; }
.small { font-size: 12px; }
.error { 
  color: var(--zen-error); 
  margin-bottom: 12px; 
  background: #fef2f2; 
  padding: 14px 18px; 
  border-radius: 12px;
  border-left: 4px solid var(--zen-error);
}
.flash { 
  background: linear-gradient(135deg, rgba(128, 238, 225, 0.2), rgba(0, 95, 123, 0.1));
  color: var(--zen-primary); 
  padding: 14px 18px; 
  border-radius: 12px; 
  margin-bottom: 16px;
  border-left: 4px solid var(--zen-accent);
}

/* Meta editor with jsoneditor */
.meta-panel {
  margin-top: 24px;
}

.meta-panel .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  margin: -28px -28px 24px -28px;
  border-radius: 16px 16px 0 0;
}

.editor-toolbar {
  display: flex;
  gap: 8px;
}

.toolbar-btn {
  background: rgba(0, 95, 123, 0.1);
  color: var(--zen-primary);
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 50px;
}

.toolbar-btn:hover {
  background: var(--zen-primary);
  color: #fff;
}

/* JSON Editor overrides */
#jsoneditor {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--zen-border);
}

.jsoneditor {
  border: none !important;
}

.jsoneditor-menu {
  background: var(--zen-primary) !important;
  border-bottom: none !important;
}

.jsoneditor-menu > button,
.jsoneditor-menu > .jsoneditor-modes > button {
  color: #fff !important;
}

.jsoneditor-contextmenu .jsoneditor-menu li button {
  color: var(--zen-primary) !important;
}

.jsoneditor-contextmenu .jsoneditor-menu li button:hover {
  background: var(--zen-background) !important;
}

.ace-jsoneditor .ace_gutter {
  background: var(--zen-background) !important;
  color: var(--zen-text-muted) !important;
}

.ace-jsoneditor .ace_scroller {
  background: #fff !important;
}

.jsoneditor-tree {
  background: #fff !important;
}

.jsoneditor-field {
  color: var(--zen-primary) !important;
}

.jsoneditor-value.jsoneditor-string {
  color: var(--zen-hover) !important;
}

.jsoneditor-value.jsoneditor-number {
  color: #d97706 !important;
}

.jsoneditor-value.jsoneditor-boolean {
  color: #7c3aed !important;
}

.meta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

/* Legacy metrics (for users list if needed) */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.metric {
  background: var(--zen-background);
  border: 2px solid var(--zen-border);
  border-radius: 12px;
  padding: 16px;
}

.metric .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--zen-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.metric .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--zen-primary);
}

/* Login page specific */
.login-container {
  max-width: 400px;
  margin: 60px auto;
}

.login-container h1 {
  color: var(--zen-primary);
  text-align: center;
  margin-bottom: 8px;
}

.login-container .subtitle {
  color: var(--zen-text-muted);
  text-align: center;
  margin-bottom: 32px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--zen-background);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--zen-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--zen-text-muted);
}
