/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

/* Color Variables & Reset */
:root {
  --bg-main: #f1f5f9;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  
  --text-dark: #0f172a;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Brand Colors */
  --primary: #3b82f6; /* Classic Blue */
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.15);
  
  --success: #10b981; /* Green */
  --success-glow: rgba(16, 185, 129, 0.15);
  
  --warning: #f97316; /* Orange */
  --warning-hover: #ea580c;
  --warning-glow: rgba(249, 115, 22, 0.15);
  
  --progress-red: #ef4444; /* Red bar in screenshot */
  
  --font-sans: 'Inter', 'Prompt', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* APP LAYOUT - SIDEBAR + CONTENT */
.app-layout {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* LEFT SIDEBAR */
.sidebar {
  width: 280px;
  background-color: #0b1329; /* Deep Navy Blue */
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 100;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
  padding: 0 8px;
}

.brand-emoji {
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255,255,255,0.1);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.sidebar-brand h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-brand p {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.active-project {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 30px;
}

.project-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ea580c; /* Orange accent */
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.project-name {
  font-size: 0.825rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 4px;
}

.project-meta {
  font-size: 0.725rem;
  color: #94a3b8;
}

/* SIDEBAR NAVIGATION */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.nav-link {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 3px 0 0 #ea580c; /* Left side border */
  font-weight: 600;
}

.sidebar-footer {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  letter-spacing: 0.05em;
}

/* MAIN CONTENT AREA */
.main-content {
  flex-grow: 1;
  background-color: var(--bg-main);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  min-width: 0; /* Prevent flex blowout */
}

/* TOP NAV BAR */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.top-nav h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.user-role {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* PAGE WRAPPERS */
.page {
  display: none;
  animation: fadeIn 0.3s ease-out forwards;
  flex-grow: 1;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   PAGE 1: DASHBOARD
   ========================================================================== */
.dashboard-header-bar {
  margin-bottom: 20px;
}

.dashboard-title-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.dashboard-title-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dashboard-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

/* Progress Panel (Horizontal Bar) */
.progress-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.horizontal-progress-container {
  width: 100%;
  height: 20px;
  background-color: #e2e8f0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.horizontal-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #ef4444, #f97316); /* Red to orange gradient */
  border-radius: 30px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.25);
}

.progress-panel-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.progress-panel-footer span:first-child {
  color: var(--primary);
  font-weight: 600;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.metric-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  position: relative;
  transition: transform 0.2s;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

.metric-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.metric-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.metric-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  margin-top: 12px;
  padding-top: 8px;
}

/* Leaderboard Ranking Panel */
.leaderboard-panel {
  display: flex;
  flex-direction: column;
}

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

.leaderboard-panel-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.leaderboard-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: transform 0.2s;
}

.leaderboard-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background-color: #e2e8f0;
}

.leaderboard-item:nth-child(1) .rank-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}
.leaderboard-item:nth-child(2) .rank-badge {
  background: linear-gradient(135deg, #cbd5e1, #64748b);
  color: white;
}
.leaderboard-item:nth-child(3) .rank-badge {
  background: linear-gradient(135deg, #b45309, #78350f);
  color: white;
}

.worker-details {
  flex-grow: 1;
}

.worker-name {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.worker-progress-bar {
  height: 5px;
  background-color: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.worker-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary), #60a5fa);
  border-radius: 3px;
  width: 0%;
  transition: width 0.6s ease;
}

.worker-stats {
  text-align: right;
}

.worker-count {
  font-weight: 700;
  font-size: 0.95rem;
}

.worker-money {
  font-size: 0.675rem;
  color: var(--success);
  font-weight: 500;
}


/* ==========================================================================
   PAGE 2: TASK BOARD
   ========================================================================= */
.controls-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .app-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .sidebar-brand {
    margin-bottom: 15px;
    justify-content: center;
  }

  .active-project {
    display: none;
  }

  .sidebar-nav {
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
    margin-bottom: 5px;
  }

  .sidebar-nav .nav-link {
    padding: 10px;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
  }

  .sidebar-footer {
    display: none;
  }

  .main-content {
    padding: 15px;
  }

  .top-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 15px 0;
  }

  .nav-right {
    justify-content: space-between;
    width: 100%;
  }

  .controls-bar {
    flex-direction: column;
    gap: 8px;
  }

  .filter-select {
    width: 100%;
    min-width: unset;
  }

  .modal-content {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-input-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 12px 10px 38px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.filter-select {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  min-width: 160px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Card Lists */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.task-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: all 0.2s;
  position: relative;
}

.task-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.task-card.booked {
  border-left: 4px solid var(--warning);
}

.task-card.completed {
  border-left: 4px solid var(--success);
}

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

.device-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.device-type {
  background-color: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.device-ids {
  margin-bottom: 10px;
}

.device-id-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.device-id-row span:first-child {
  color: var(--text-muted);
}

.device-id-row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.location-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  margin-top: 8px;
}

.gps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.725rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

.gps-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.action-btn {
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.btn-book {
  background-color: var(--warning-glow);
  color: var(--warning-hover);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.btn-book:hover {
  background-color: var(--warning-hover);
  color: white;
}

.btn-complete {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

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

.btn-reset-test {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning-hover);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-reset-test:hover {
  background-color: var(--warning-hover);
  color: white;
}

.btn-revert-task {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-revert-task:hover {
  background-color: #ef4444;
  color: white;
}

.btn-unbook {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-unbook:hover {
  background-color: #ef4444;
  color: white;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--warning-hover);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==========================================================================
   PAGE 3: COMPLETED TASKS
   ========================================================================== */
.table-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.table-header-bar h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.table-header-bar p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.btn-export {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px var(--success-glow);
  transition: all 0.2s;
}

.btn-export:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px var(--success-glow);
}

.completed-details {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 0.7rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

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

.detail-label {
  color: var(--text-muted);
}

.detail-val {
  font-weight: 600;
  color: var(--text-secondary);
}

.task-image-preview {
  width: 100%;
  height: 100px;
  background-color: #f8fafc;
  border: 1px dashed var(--border-color);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.task-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   MODALS / POPUPS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.15s ease-out;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

.modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-select, .form-input {
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 130px;
  border: 2px dashed var(--border-color);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #f8fafc;
  transition: border-color 0.2s;
  overflow: hidden;
}

.file-upload-wrapper:hover {
  border-color: var(--primary);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-align: center;
}

.upload-placeholder i {
  color: var(--primary);
}

.upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary {
  background-color: #f1f5f9;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 2px 4px var(--primary-glow);
}

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

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  grid-column: 1 / -1;
  color: var(--text-secondary);
}

.empty-state i {
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.empty-state p {
  font-size: 0.8rem;
}
