/* ══════════════════════════════════════
   BISCONOVA ADMIN – style.css
   Optimized Dark Blue Premium Glassmorphism Theme
   ══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --bg:          #090d1a;
  --bg-2:        #0d1526;
  --bg-3:        #111d35;
  --blue:        #1a8cff;
  --blue-light:  #38a8ff;
  --blue-glow:   rgba(26, 140, 255, 0.25);
  --cyan:        #00d4ff;
  --white:       #ffffff;
  --text:        #c8d4e8;
  --text-muted:  #7a8faa;
  --border:      rgba(255, 255, 255, 0.08);
  --border-blue: rgba(26, 140, 255, 0.3);
  --card-bg:     rgba(13, 21, 38, 0.8);
  --card-hover:  rgba(17, 29, 53, 0.95);
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.5);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(26, 140, 255, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(26, 140, 255, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--white);
  font-weight: 700;
}

/* Glassmorphism Panel Base */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.glass-panel:hover {
  border-color: var(--border-blue);
  box-shadow: 0 8px 45px rgba(26, 140, 255, 0.08);
}

/* ──────────────────────────────────────
   LOGIN SCREEN
   ────────────────────────────────────── */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.login-box {
  width: 100%;
  max-width: 440px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.login-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.login-logo img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px var(--blue));
}
.login-logo span {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.login-logo .accent {
  color: var(--cyan);
}
.login-box h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.login-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.input-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}
.input-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
  background: rgba(0, 0, 0, 0.4);
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid transparent;
  display: none;
}
.form-alert.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0c73e0 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 140, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 140, 255, 0.45);
  background: linear-gradient(135deg, #2b96ff 0%, var(--blue) 100%);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
.btn-danger:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--white);
}
.btn-success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.btn-success:hover {
  background: rgba(16, 185, 129, 0.22);
  color: var(--white);
}
.btn-full {
  width: 100%;
}

/* ──────────────────────────────────────
   MAIN DASHBOARD LAYOUT (GRID CONTROLLED)
   ────────────────────────────────────── */
.app-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

/* Sidebar Navigation */
aside {
  border-right: 1px solid var(--border);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  background: var(--bg-2);
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-left: 8px;
}
.brand img {
  width: 32px;
  height: 32px;
}
.brand span {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.brand span .accent {
  color: var(--cyan);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.menu-item svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}
.menu-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}
.menu-item.active {
  color: var(--blue);
  background: rgba(26, 140, 255, 0.06);
  border-left-color: var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
}
.menu-item.active svg {
  color: var(--blue);
  filter: drop-shadow(0 0 4px var(--blue-glow));
}
.menu-item:hover svg {
  transform: scale(1.05);
}

.sidebar-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cyan);
  font-size: 14px;
}
.user-info h5 {
  font-size: 13.5px;
  color: var(--white);
}
.user-info p {
  font-size: 11px;
  color: var(--text-muted);
}
.btn-icon-logout {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-icon-logout:hover {
  background: #ef4444;
  color: var(--white);
  transform: scale(1.05);
}

/* Main Content Panel */
main {
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Top bar header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  gap: 20px;
}
.header-title h2 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.header-title p {
  color: var(--text-muted);
  font-size: 14.5px;
}
.header-actions {
  display: flex;
  gap: 12px;
}

/* MOBILE HEADER & DRAWER SYSTEM */
.mobile-header {
  display: none;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-logo img {
  width: 28px;
  height: 28px;
}
.mobile-logo span {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.mobile-logo .accent {
  color: var(--cyan);
}
.btn-mobile-menu {
  color: var(--text);
  font-size: 24px;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-close-sidebar {
  display: none;
  position: absolute;
  top: 24px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.btn-close-sidebar:hover {
  color: var(--white);
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99;
  display: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}

/* ──────────────────────────────────────
   DASHBOARD OVERVIEW SECTION
   ────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.kpi-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}
.kpi-card.cyan::before {
  background: var(--cyan);
}
.kpi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.kpi-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 140, 255, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kpi-card.cyan .kpi-icon {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
}
.kpi-value {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.kpi-subtext {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Charts Grid */
.charts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
/* Responsive charts grid that stack */
.charts-grid-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 30px;
}
.chart-box {
  padding: 24px;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.chart-title h3 {
  font-size: 16px;
}
.chart-title p {
  font-size: 12.5px;
  color: var(--text-muted);
}
.chart-body {
  position: relative;
  height: 300px;
}
.chart-body-pie {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ──────────────────────────────────────
   ORDER LIST TABLE SECTION
   ────────────────────────────────────── */
.table-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.filter-search-box input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}
.filter-search-box input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
}
.filter-search-box svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}
.filter-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.select-filter {
  background: rgba(16, 26, 48, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.select-filter:focus {
  border-color: var(--blue);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  min-width: 800px; /* Ensures columns stay readable */
}
th {
  background: rgba(16, 26, 48, 0.8);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border);
}
td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

/* User display in table */
.customer-cell {
  display: flex;
  flex-direction: column;
}
.customer-name {
  font-weight: 600;
  color: var(--white);
}
.customer-discord {
  font-size: 12px;
  color: #8b97ff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.customer-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Service display in table */
.service-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-emoji {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.service-name {
  font-weight: 500;
  color: var(--white);
  display: block;
}
.service-qty {
  font-size: 11px;
  color: var(--text-muted);
}

.price-cell {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--cyan);
}

/* Badges */
.badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}
.badge-warning { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); box-shadow: 0 0 8px rgba(245, 158, 11, 0.06); }
.badge-info { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 0 8px rgba(59, 130, 246, 0.06); }
.badge-success { background: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.2); box-shadow: 0 0 8px rgba(16, 185, 129, 0.06); }
.badge-danger { background: rgba(239, 68, 68, 0.1); color: #f87171; border-color: rgba(239, 68, 68, 0.2); box-shadow: 0 0 8px rgba(239, 68, 68, 0.06); }
.badge-secondary { background: rgba(107, 114, 128, 0.1); color: #9ca3af; border-color: rgba(107, 114, 128, 0.2); }

.source-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.source-badge.discord { color: #8b97ff; }
.source-badge.web { color: var(--cyan); }

/* Pagination footer */
.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.pagination-controls {
  display: flex;
  gap: 6px;
}
.pagination-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 13px;
}
.pagination-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--white);
  background: var(--bg-hover);
}
.pagination-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 8px var(--blue-glow);
}
.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ──────────────────────────────────────
   MODALS AND ACTION DIALOGS
   ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
  opacity: 1;
}
.modal-content {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-content {
  transform: scale(1);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal-header h3 {
  font-size: 18px;
}
.btn-close {
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.btn-close:hover {
  color: var(--white);
}
.modal-body {
  margin-bottom: 24px;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Promo Codes and Service list simple styled cards */
.promo-performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.promo-mini-card {
  padding: 16px;
  background: rgba(16, 26, 48, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.promo-info h4 {
  font-size: 14px;
  color: var(--cyan);
  font-family: var(--font-head);
}
.promo-info p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}
.promo-stats {
  text-align: right;
}
.promo-usage {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.promo-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(11, 18, 33, 0.95);
  border: 1px solid var(--border-blue);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: toastIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.toast.success {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}
.toast.success svg { color: #34d399; }
.toast.error {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}
.toast.error svg { color: #f87171; }

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden { display: none !important; }

/* ──────────────────────────────────────
   RESPONSIVE MEDIA QUERIES (BREAKPOINTS)
   ────────────────────────────────────── */
@media (max-width: 1024px) {
  .charts-grid {
    grid-template-columns: 1fr;
  }
  .charts-grid-split {
    grid-template-columns: 1fr;
  }
  .chart-body-pie {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .app-container {
    grid-template-columns: 1fr;
  }
  .mobile-header {
    display: flex;
  }
  
  /* Sidebar Drawer slide-out */
  aside {
    position: fixed;
    left: -280px;
    top: 0;
    width: 260px;
    height: 100vh;
    z-index: 1000;
    transition: transform var(--transition);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }
  aside.open {
    transform: translateX(280px);
  }
  .btn-close-sidebar {
    display: block;
  }
  
  main {
    padding: 24px 16px;
    width: 100%;
  }
  .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  .header-actions {
    width: 100%;
  }
  .header-actions .btn {
    width: 100%;
  }
  .table-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-search-box {
    max-width: 100%;
  }
  .filter-options {
    flex-direction: column;
  }
  .select-filter {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .login-box {
    padding: 32px 20px;
  }
}
