/* ============================================
   DIGITAL SEBA - Components CSS
   Reusable component styles
   ============================================ */

/* ============================================
   FORM COMPONENTS
   ============================================ */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  font-family: inherit;
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
}

.input-field::placeholder { color: var(--text-placeholder); }

.input-field.error {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.input-field.success {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.input-with-icon .input-field { padding-left: 44px; }

.input-with-icon .input-action {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: color var(--transition-fast);
}

.input-with-icon .input-action:hover { color: var(--text-primary); }

.error-message {
  font-size: 12px;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  gap: 5px;
}

.success-message {
  font-size: 12px;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  border-radius: 5px;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.checkbox-group input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--transition-fast);
}

.checkbox-group input:checked + .checkbox-custom::after {
  transform: rotate(-45deg) scale(1);
}

.checkbox-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Radio */
.radio-group {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.radio-group input[type="radio"] { display: none; }

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  background: var(--bg-input);
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.radio-group input:checked + .radio-custom {
  border-color: var(--primary);
}

.radio-custom::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition-fast);
}

.radio-group input:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Toggle Switch */
.toggle-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-track {
  width: 48px;
  height: 26px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  position: relative;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.toggle-switch input:checked + .toggle-track {
  background: var(--primary);
}

.toggle-track::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(22px);
}

/* Select */
.select-field {
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  font-family: inherit;
}

.select-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
}

/* ============================================
   CARD COMPONENTS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
}

.card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.card-body { }

.card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
}

/* Info Card */
.info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card-content { flex: 1; }

.info-card-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.info-card-value {
  font-size: 22px;
  font-weight: 800;
}

/* Alert Cards */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.6;
}

.alert-info {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--primary-light);
}

.alert-success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--accent-green);
}

.alert-warning {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--accent-yellow);
}

.alert-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--accent-red);
}

/* ============================================
   BADGE & TAGS
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge-primary {
  background: rgba(37,99,235,0.15);
  color: var(--primary-light);
}

.badge-success {
  background: rgba(16,185,129,0.15);
  color: var(--accent-green);
}

.badge-warning {
  background: rgba(245,158,11,0.15);
  color: var(--accent-yellow);
}

.badge-error {
  background: rgba(239,68,68,0.15);
  color: var(--accent-red);
}

.badge-purple {
  background: rgba(139,92,246,0.15);
  color: var(--accent-purple);
}

.badge-new {
  background: var(--gradient-primary);
  color: white;
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tag:hover, .tag.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 18px;
}

.modal-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

.modal-body { margin-bottom: 24px; }

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ============================================
   TABS
   ============================================ */
.tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab-list {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 5px;
  border: 1px solid var(--border);
  width: fit-content;
}

.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.tab-btn.active {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Full width tabs */
.tab-list-full {
  width: 100%;
  border-radius: 0;
  background: none;
  padding: 0;
  border: none;
  border-bottom: 2px solid var(--border);
}

.tab-list-full .tab-btn {
  border-radius: 0;
  background: none;
  padding: 12px 20px;
  position: relative;
}

.tab-list-full .tab-btn.active {
  background: none;
  box-shadow: none;
}

.tab-list-full .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* ============================================
   PROGRESS
   ============================================ */
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* Circular progress */
.circular-progress {
  position: relative;
  width: 80px;
  height: 80px;
}

.circular-progress svg {
  transform: rotate(-90deg);
}

.circular-progress .progress-track {
  fill: none;
  stroke: var(--bg-tertiary);
  stroke-width: 6;
}

.circular-progress .progress-arc {
  fill: none;
  stroke: url(#progressGrad);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s ease;
}

.circular-progress .progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover { color: var(--primary); }

.breadcrumb-item.active { color: var(--text-primary); font-weight: 500; }

.breadcrumb-sep {
  color: var(--text-muted);
  font-size: 12px;
}

/* ============================================
   AVATAR
   ============================================ */
.avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: white;
}

.avatar-sm { width: 32px; height: 32px; font-size: 13px; }
.avatar-md { width: 44px; height: 44px; font-size: 18px; }
.avatar-lg { width: 64px; height: 64px; font-size: 24px; }
.avatar-xl { width: 96px; height: 96px; font-size: 36px; }

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-group {
  display: flex;
}

.avatar-group .avatar {
  margin-left: -10px;
  border: 2px solid var(--bg-card);
}

.avatar-group .avatar:first-child { margin-left: 0; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 8px 12px 4px;
  margin-top: 8px;
}

.sidebar-title:first-child { margin-top: 0; }

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
}

.sidebar-link:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.sidebar-link.active {
  background: rgba(37,99,235,0.1);
  color: var(--primary);
}

.sidebar-link .link-icon { flex-shrink: 0; }

.sidebar-link .link-badge {
  margin-left: auto;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* ============================================
   DATA TABLE
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table thead {
  background: var(--bg-secondary);
}

.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.data-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table tr:hover td {
  background: var(--bg-secondary);
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.notification-item:hover {
  background: var(--bg-secondary);
}

.notification-item.unread {
  background: rgba(37,99,235,0.05);
  border-left: 3px solid var(--primary);
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.notif-content { flex: 1; min-width: 0; }

.notif-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.notif-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.notif-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-top: 5px;
}

/* ============================================
   COPY BUTTON
   ============================================ */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.copy-btn.copied {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: white;
}

/* ============================================
   STEP INDICATOR
   ============================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
}

.step.completed:not(:last-child)::after {
  background: var(--primary);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-normal);
}

.step.active .step-num {
  border-color: var(--primary);
  background: rgba(37,99,235,0.1);
  color: var(--primary);
}

.step.completed .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.step.active .step-label { color: var(--primary); }
.step.completed .step-label { color: var(--text-secondary); }

/* ============================================
   STAT MINI CARD
   ============================================ */
.stat-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.stat-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.stat-mini-value {
  font-size: 22px;
  font-weight: 900;
}

.stat-mini-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-mini-change {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-mini-change.up { color: var(--accent-green); }
.stat-mini-change.down { color: var(--accent-red); }

/* ============================================
   FILE UPLOAD
   ============================================ */
.file-upload-zone {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: var(--bg-secondary);
}

.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--primary);
  background: rgba(37,99,235,0.04);
}

.file-upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.file-upload-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.file-upload-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.file-upload-limit {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ============================================
   TOOL CARD
   ============================================ */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.tool-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: inherit;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tool-card .tc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.tool-card .tc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.tool-card .tc-title {
  font-size: 17px;
  font-weight: 700;
}

.tool-card .tc-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tool-card .tc-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}

/* ============================================
   SCROLLBAR CUSTOMIZATION
   ============================================ */
.custom-scroll::-webkit-scrollbar { width: 4px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 2px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================
   DIVIDERS
   ============================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.divider-with-text {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.divider-with-text::before,
.divider-with-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-with-text span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-icon { font-size: 56px; }

.empty-title {
  font-size: 20px;
  font-weight: 700;
}

.empty-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.6;
}
