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

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

input[type="date"] {
  color-scheme: light;
}

.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.12);
  color: #059669;
}

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

table tr:hover {
  background: rgba(15, 23, 42, 0.03);
}

.btn-primary {
  background-image: linear-gradient(to right, #2563eb, #9333ea);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.92;
}
.btn-primary:active {
  transform: scale(0.98);
}
