/* style.css — Super Admin panel uchun qo'shimcha uslublar (Tailwind bilan birga) */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Panel doim dark bo'lgani uchun native date input (kalendar belgisi) ham
   shu mavzuga moslashishi kerak, aks holda qora belgi qorong'i fonda ko'rinmaydi. */
input[type="date"] {
  color-scheme: dark;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-active {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.status-blocked {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
