/* ============================================================
   RADAR DASHBOARD — Styles
   Bloomberg-terminal-meets-modern-SaaS aesthetic
   ============================================================ */

/* ---- SCANLINE OVERLAY (subtle CRT feel) ---- */
body.dash-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(108, 92, 231, 0.006) 3px,
    rgba(108, 92, 231, 0.006) 6px
  );
  pointer-events: none;
  z-index: 1000;
}

/* ---- KEYFRAMES ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 92, 231, 0); }
  50% { box-shadow: 0 0 24px 2px rgba(108, 92, 231, 0.08); }
}

@keyframes blinkCaret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---- LAYOUT SHELL ---- */
.dash-body {
  padding-top: 60px;
  min-height: 100vh;
}

.dash-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- NAV ---- */
.dash-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.dash-nav .logo {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.dash-nav .logo span {
  color: var(--accent-glow);
}

.nav-center {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulseGlow 2.5s infinite;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-email {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.nav-logout {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-logout:hover {
  color: var(--red);
  background: rgba(255, 107, 107, 0.06);
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 24px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }

/* Subtle top edge glow on cards */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0.2;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.stat-value {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-value--loading {
  color: var(--muted);
}

/* Slot card special treatment */
.stat-card--slot .stat-value {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.stat-card--slot .slot-name {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

.stat-card--slot .slot-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(0, 210, 211, 0.08);
  border: 1px solid rgba(0, 210, 211, 0.15);
  border-radius: 4px;
  font-size: 11px;
  flex-shrink: 0;
}

.stat-card--slot .slot-detail {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ---- CONTROLS BAR (tabs + filters) ---- */
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.4s 0.25s ease forwards;
}

/* Feed Tabs */
.feed-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.feed-tabs::-webkit-scrollbar { display: none; }

.feed-tab {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}

.feed-tab:hover {
  color: var(--white);
  background: rgba(108, 92, 231, 0.06);
}

.feed-tab--active {
  background: var(--accent);
  color: var(--white);
}

.feed-tab--active:hover {
  background: var(--accent-glow);
}

/* Feed tab count badge */
.feed-tab .tab-count {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-glow);
  margin-left: 4px;
  opacity: 0.7;
}

.feed-tab--active .tab-count {
  color: rgba(255, 255, 255, 0.6);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.filter-select,
.filter-input {
  background: var(--surface);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.filter-select {
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235a5d72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  min-width: 130px;
}

.filter-select option {
  background: var(--surface2);
  color: var(--white);
}

.filter-input {
  width: 180px;
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--accent);
}

.filter-input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.btn-export {
  background: none;
  border: 1px solid rgba(0, 210, 211, 0.25);
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-export:hover {
  background: rgba(0, 210, 211, 0.06);
  border-color: var(--teal);
}

/* ---- DATA TABLE ---- */
.table-wrap {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.4s 0.35s ease forwards;
}

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

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.data-table thead {
  background: var(--surface);
}

.data-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.data-table th:hover {
  color: var(--white);
}

.data-table th .sort-icon {
  display: inline-block;
  margin-left: 4px;
  opacity: 0.3;
  font-size: 9px;
  vertical-align: middle;
}

.data-table th.sorted-asc .sort-icon,
.data-table th.sorted-desc .sort-icon {
  opacity: 1;
  color: var(--accent-glow);
}

.data-table th.col-value,
.data-table td.col-value {
  text-align: right;
}

.data-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: var(--white);
  border-bottom: 1px solid rgba(108, 92, 231, 0.04);
  vertical-align: middle;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-table tbody tr {
  transition: background 0.15s;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.008);
}

.data-table tbody tr:hover {
  background: rgba(108, 92, 231, 0.04);
}

/* Column-specific styles */
.col-company {
  font-weight: 600;
  min-width: 180px;
}

.col-type {
  min-width: 90px;
}

.col-date {
  font-family: var(--mono);
  font-size: 12px;
  min-width: 90px;
  color: var(--muted);
}

td.col-date {
  color: var(--muted);
}

.col-address {
  min-width: 160px;
}

.col-community {
  min-width: 120px;
}

td.col-community {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.col-value {
  font-family: var(--mono);
  font-weight: 600;
  min-width: 100px;
}

td.col-value {
  color: var(--teal);
  font-size: 12px;
}

.col-phone {
  font-family: var(--mono);
  font-size: 12px;
  min-width: 120px;
}

td.col-phone {
  color: var(--muted);
}

.col-website {
  min-width: 120px;
  max-width: 160px;
}

td.col-website a {
  color: var(--teal);
  font-size: 12px;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

td.col-website a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Type badge */
.type-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1;
}

.type-badge--permit {
  background: rgba(108, 92, 231, 0.1);
  color: var(--accent-glow);
}

.type-badge--dev {
  background: rgba(0, 210, 211, 0.1);
  color: var(--teal);
}

.type-badge--biz {
  background: rgba(254, 202, 87, 0.1);
  color: var(--amber);
}

.type-badge--liquor {
  background: rgba(255, 107, 107, 0.1);
  color: var(--red);
}

.type-badge--court {
  background: rgba(90, 93, 114, 0.2);
  color: var(--muted);
}

/* Empty state */
.table-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
  font-size: 14px;
}

.table-empty .empty-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.table-empty p {
  margin-top: 4px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.3px;
}

/* ---- SKELETON LOADING ---- */
.skeleton-row td {
  padding: 16px;
}

.skeleton-cell {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--surface) 0%,
    var(--surface2) 40%,
    var(--surface) 80%
  );
  background-size: 400px 100%;
  animation: shimmer 1.8s infinite linear;
}

.skeleton-cell--short { width: 60px; }
.skeleton-cell--med { width: 120px; }
.skeleton-cell--long { width: 180px; }
.skeleton-cell--num { width: 80px; margin-left: auto; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.pagination-info {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination-page {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.pagination-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--white);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ---- LOGIN PAGE ---- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

/* Grid background for login */
.login-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 92, 231, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.5s 0.1s ease forwards;
}

/* Top edge glow */
.login-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0.35;
}

.login-logo {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 36px;
}

.login-logo span {
  color: var(--accent-glow);
}

.login-heading {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.login-sub {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.5;
}

.login-error {
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.15);
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.login-error a {
  color: var(--red);
  text-decoration: underline;
}

.login-form-group {
  margin-bottom: 20px;
}

.login-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.login-input {
  width: 100%;
  background: var(--surface2);
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: 0.3px;
}

.login-input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.login-input:focus {
  border-color: var(--accent);
}

.login-btn {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.login-btn:active {
  transform: translateY(0);
}

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

.login-success {
  text-align: center;
  padding: 12px 0;
}

.login-success .check-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 210, 211, 0.08);
  border: 1px solid rgba(0, 210, 211, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
}

.login-success h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.login-success p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.login-success .expiry-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  opacity: 0.6;
}

.login-footer {
  text-align: center;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.login-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.login-footer a:hover {
  color: var(--accent-glow);
}

/* Hidden utility */
.hidden { display: none !important; }

/* ---- SLOTS PAGE ---- */
.slots-page {
  padding-top: 60px;
}

.slots-hero {
  text-align: center;
  padding: 72px 24px 48px;
  position: relative;
}

/* Radial glow behind heading */
.slots-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(108, 92, 231, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.slots-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.5s 0.1s ease forwards;
}

.slots-hero .slots-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.5s 0.2s ease forwards;
}

.slots-table-wrap {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 0 24px;
  opacity: 0;
  animation: fadeIn 0.5s 0.3s ease forwards;
}

.slots-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.slots-table thead {
  background: var(--surface);
}

.slots-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.slots-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(108, 92, 231, 0.04);
}

.slots-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.008);
}

.slots-table tbody tr {
  transition: background 0.15s;
}

.slots-table tbody tr:hover {
  background: rgba(108, 92, 231, 0.04);
}

.slots-table .slot-city {
  font-weight: 600;
}

.slots-table .slot-category {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* Status badges */
.status-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1;
}

.status-badge--open {
  background: rgba(0, 210, 211, 0.12);
  color: var(--teal);
  border: 1px solid rgba(0, 210, 211, 0.2);
}

.status-badge--taken {
  background: rgba(255, 107, 107, 0.08);
  color: rgba(255, 107, 107, 0.6);
  border: 1px solid rgba(255, 107, 107, 0.1);
}

.status-badge--waitlist {
  background: rgba(254, 202, 87, 0.1);
  color: var(--amber);
  border: 1px solid rgba(254, 202, 87, 0.15);
}

.slot-action a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
}

.slot-action--claim a {
  color: var(--teal);
}

.slot-action--claim a:hover {
  color: var(--white);
}

.slot-action--waitlist a {
  color: var(--muted);
}

.slot-action--waitlist a:hover {
  color: var(--amber);
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 900px) {
  .dash-container {
    padding: 0 20px;
  }

  .dash-nav {
    padding: 0 20px;
  }

  .nav-center {
    display: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .controls-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar {
    flex-wrap: wrap;
  }

  .filter-input {
    width: 100%;
    flex: 1;
    min-width: 140px;
  }

  .slots-hero h1 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .dash-body {
    padding-top: 56px;
  }

  .dash-nav {
    height: 56px;
    padding: 0 16px;
  }

  .dash-container {
    padding: 0 12px;
  }

  .nav-email {
    display: none;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0 16px;
  }

  .stat-card {
    padding: 16px 20px;
  }

  .stat-value {
    font-size: 26px;
  }

  .feed-tabs {
    gap: 2px;
  }

  .feed-tab {
    padding: 7px 10px;
    font-size: 10px;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-select {
    min-width: 100px;
    font-size: 10px;
    padding: 7px 10px;
  }

  .filter-input {
    font-size: 11px;
    padding: 7px 10px;
  }

  .btn-export {
    font-size: 9px;
    padding: 7px 12px;
  }

  .pagination {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }

  .login-card {
    padding: 36px 24px;
  }

  .login-heading {
    font-size: 22px;
  }

  .slots-hero {
    padding: 48px 16px 32px;
  }

  .slots-table th,
  .slots-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
