/* ═══════════════════════════════════════════════
   Ákotí Empty State — Pure CSS

   <div class="akoti-empty">
     <span class="akoti-empty-icon"><span class="aki aki-database aki-2xl"></span></span>
     <h3 class="akoti-empty-title">No records found</h3>
     <p class="akoti-empty-desc">Try adjusting your search or filters.</p>
     <button class="akoti-btn primary">Add Record</button>
   </div>

   Variants: .akoti-empty-compact, .akoti-empty-card
   ═══════════════════════════════════════════════ */

.akoti-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  font-family: 'Outfit', system-ui, sans-serif;
}

.akoti-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px 8px 24px 8px;
  background: rgba(26, 47, 94, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #8a8a96;
  font-size: 28px;
}

.akoti-empty-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e1e24;
  margin: 0 0 6px;
}

.akoti-empty-desc {
  font-size: 14px;
  color: #8a8a96;
  margin: 0 0 20px;
  max-width: 360px;
  line-height: 1.5;
}

/* Compact */
.akoti-empty.akoti-empty-compact {
  padding: 24px 16px;
}
.akoti-empty.akoti-empty-compact .akoti-empty-icon {
  width: 48px; height: 48px; font-size: 20px; margin-bottom: 10px;
  border-radius: 16px 6px 16px 6px;
}
.akoti-empty.akoti-empty-compact .akoti-empty-title { font-size: 0.95rem; }
.akoti-empty.akoti-empty-compact .akoti-empty-desc { font-size: 13px; margin-bottom: 14px; }

/* Card wrapper */
.akoti-empty.akoti-empty-card {
  background: white;
  border: 1px dashed rgba(26,47,94,0.15);
  border-radius: 16px 6px 16px 6px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .akoti-empty-icon { background: rgba(255,255,255,0.04); color: #5a5a66; }
  :root:not([data-theme="light"]) .akoti-empty-title { color: #e0e0e4; }
  :root:not([data-theme="light"]) .akoti-empty-desc { color: #6a6a76; }
  :root:not([data-theme="light"]) .akoti-empty.akoti-empty-card { background: #1e1e24; border-color: rgba(255,255,255,0.1); }
}
