/* admin/css/admin.css — NEU Library Admin v3 — Glass Dashboard */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg:          #060b18;
  --bg2:         #090f1e;
  --glass:       rgba(255,255,255,0.045);
  --glass-hov:   rgba(255,255,255,0.075);
  --glass-deep:  rgba(255,255,255,0.025);
  --border:      rgba(255,255,255,0.075);
  --border-hov:  rgba(255,255,255,0.14);

  --blue:    #4a9eff;
  --blue-g:  rgba(74,158,255,0.18);
  --gold:    #f0c040;
  --gold-g:  rgba(240,192,64,0.18);
  --green:   #4ade80;
  --green-g: rgba(74,222,128,0.18);
  --purple:  #a78bfa;
  --purple-g:rgba(167,139,250,0.18);
  --red:     #f87171;
  --red-g:   rgba(248,113,113,0.15);

  --text:    rgba(255,255,255,0.92);
  --text-2:  rgba(255,255,255,0.5);
  --text-3:  rgba(255,255,255,0.22);

  --font:  'Sora', system-ui, sans-serif;
  --mono:  'DM Mono', monospace;
  --sidebar-w:          64px;
  --sidebar-expanded-w: 240px;
  --spring: cubic-bezier(0.34, 1.28, 0.64, 1);
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  overflow: hidden;
}

.bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; width: 0; height: 0; overflow: visible; flex-shrink: 0; }

/* ─── CAMPUS BACKGROUND ─── */
.bg-image {
  position: fixed; inset: 0; z-index: 1;
  background: url('/images/neu-campus.jpg') center center / cover no-repeat;
  filter: blur(18px) brightness(0.5) saturate(1.3);
  transform: scale(1.08);
}
#bgCanvas {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none; opacity: 0.85;
}

.bg-overlay {
  position: fixed; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(10,20,60,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(30,10,70,0.5) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

body { overflow: hidden; }

/* ─── AMBIENT GLOW ─── */
body::before {
  content: '';
  position: fixed; top: -200px; left: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,158,255,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: ambientFloat 12s ease-in-out infinite;
}
body::after {
  content: '';
  position: fixed; bottom: -200px; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: ambientFloat 15s 3s ease-in-out infinite reverse;
}
@keyframes ambientFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(40px) scale(1.1); }
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  background: rgba(6,10,22,0.7);
  backdrop-filter: blur(48px);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0;
  z-index: 200;
  box-shadow: 4px 0 32px rgba(0,0,0,0.3);
  transition: width 0.3s var(--ease);
  overflow: hidden;
}

.sidebar:hover {
  width: var(--sidebar-expanded-w);
}

/* Animated shimmer line on sidebar right border */
.sidebar::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(74,158,255,0.5) 30%,
    rgba(255,255,255,0.7) 50%,
    rgba(74,222,128,0.5) 70%,
    transparent 100%
  );
  background-size: 100% 300%;
  animation: sidebarShimmer 5s ease-in-out infinite;
}
@keyframes sidebarShimmer {
  0%   { background-position: 0% 0%; opacity: 0.4; }
  50%  { background-position: 0% 100%; opacity: 0.8; }
  100% { background-position: 0% 0%; opacity: 0.4; }
}

.sidebar-logo {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 13px 18px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  min-width: var(--sidebar-expanded-w);
}

.sidebar-neu-logo {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: contain; flex-shrink: 0;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.12), 0 0 20px rgba(74,158,255,0.2);
}

.logo-title {
  font-size: 13px; font-weight: 700;
  color: var(--text); letter-spacing: -0.3px;
  line-height: 1.2;
}
.logo-sub { font-size: 10px; color: var(--text-3); letter-spacing: 0.3px; margin-top: 2px; }

.sidebar-nav {
  flex: 1; padding: 14px 8px;
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Sidebar logo animation */
.sidebar-logo {
  animation: sidebarFadeIn 0.6s var(--ease) both;
}

/* Nav items staggered entrance */
.nav-item:nth-child(1) { animation: navSlideIn 0.5s 0.1s var(--spring) both; }
.nav-item:nth-child(2) { animation: navSlideIn 0.5s 0.18s var(--spring) both; }
.nav-item:nth-child(3) { animation: navSlideIn 0.5s 0.26s var(--spring) both; }
.nav-item:nth-child(4) { animation: navSlideIn 0.5s 0.34s var(--spring) both; }
.nav-item:nth-child(5) { animation: navSlideIn 0.5s 0.42s var(--spring) both; }

@keyframes navSlideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes sidebarFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0 10px 16px;
  border-radius: 12px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2); cursor: pointer;
  transition: all 0.22s var(--ease);
  text-decoration: none;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  position: relative; overflow: hidden;
  white-space: nowrap;
  min-width: var(--sidebar-expanded-w);
}
.nav-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(74,158,255,0.08), transparent);
  opacity: 0; transition: opacity 0.2s;
  border-radius: 12px;
}
.nav-item:hover { color: var(--text); background: var(--glass); }
.nav-item:hover::before { opacity: 1; }
.nav-item.active {
  color: var(--blue); background: var(--blue-g);
  border-left-color: var(--blue);
  font-weight: 600;
}
.nav-item.active::before { opacity: 1; }
.nav-icon { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }

.sidebar-bottom {
  padding: 12px 8px 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 3px;
  overflow: hidden;
}

.sidebar-status {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 10px;
  font-size: 11px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(74,222,128,0.7);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.status-text { color: var(--green); font-weight: 600; font-size: 11px; }
.entrance-link { color: var(--text-3) !important; }

/* ── Sidebar User Info ── */
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  margin-bottom: 6px;
  min-width: calc(var(--sidebar-expanded-w) - 16px);
  white-space: nowrap;
}

.sidebar-user-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.sidebar-user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(74,158,255,0.15);
  border: 1px solid rgba(74,158,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.sidebar-user-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sidebar-online-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--bg);
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
  animation: pulse 2.5s ease-in-out infinite;
}

.sidebar-user-info {
  flex: 1;
  overflow: hidden;
}

.sidebar-user-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-email {
  font-size: 10px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* ══════════════════════════════════════
   MAIN
══════════════════════════════════════ */
.admin-main {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  bottom: 0;
  overflow-y: auto; overflow-x: visible;
  padding: 24px 28px;
  z-index: 10;
  background: transparent;
  scrollbar-gutter: stable;
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; margin-bottom: 24px; flex-wrap: wrap;
}
.page-title {
  font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -0.8px;
}
.page-sub { font-size: 11px; color: var(--text-3); margin-top: 4px; letter-spacing: 0.3px; }

.topbar-right { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

.date-filters {
  display: flex; gap: 3px;
  background: var(--glass-deep);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 4px;
  backdrop-filter: blur(16px);
}
.filter-btn {
  background: transparent; border: none;
  border-radius: 9px; padding: 6px 14px;
  color: var(--text-2); font-family: var(--font);
  font-size: 11px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.filter-btn:hover { color: var(--text); background: var(--glass); }
.filter-btn.active { background: var(--blue-g); color: var(--blue); }

.custom-range {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2);
}
.custom-range.hidden { display: none; }
.date-sep { color: var(--text-3); }

.date-input {
  background: var(--glass-deep); border: 1px solid var(--border);
  border-radius: 9px; padding: 6px 12px;
  color: var(--text); font-family: var(--mono);
  font-size: 11px; outline: none;
  transition: border-color 0.2s;
}
.date-input:focus { border-color: rgba(74,158,255,0.4); }

.apply-btn {
  background: rgba(74,158,255,0.8); border: none;
  border-radius: 9px; padding: 6px 14px;
  color: white; font-family: var(--font);
  font-size: 11px; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.apply-btn:hover { background: var(--blue); }

.pdf-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 16px;
  color: var(--text-2); font-family: var(--font);
  font-size: 11px; font-weight: 600; cursor: pointer;
  transition: all 0.25s var(--spring);
  backdrop-filter: blur(16px);
}
.pdf-btn:hover {
  background: var(--green-g); border-color: rgba(74,222,128,0.3);
  color: var(--green); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,222,128,0.15);
}
.pdf-btn:active { transform: scale(0.97); }

/* ══════════════════════════════════════
   TABS
══════════════════════════════════════ */
.tab-content { display: block; }
.tab-content.hidden { display: none; }

/* ══════════════════════════════════════
   STAT CARDS
══════════════════════════════════════ */
.stat-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; margin-bottom: 18px;
}
.stat-card:nth-child(1) { animation: cardFadeUp 0.5s 0.05s var(--spring) both; }
.stat-card:nth-child(2) { animation: cardFadeUp 0.5s 0.12s var(--spring) both; }
.stat-card:nth-child(3) { animation: cardFadeUp 0.5s 0.19s var(--spring) both; }
.stat-card:nth-child(4) { animation: cardFadeUp 0.5s 0.26s var(--spring) both; }
@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.28s var(--spring);
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.stat-card:hover {
  background: var(--glass-hov); border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.stat-icon-wrap {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.stat-icon-wrap.blue   { background: var(--blue-g);   box-shadow: 0 4px 16px rgba(74,158,255,0.15); }
.stat-icon-wrap.gold   { background: var(--gold-g);   box-shadow: 0 4px 16px rgba(240,192,64,0.15); }
.stat-icon-wrap.green  { background: var(--green-g);  box-shadow: 0 4px 16px rgba(74,222,128,0.15); }
.stat-icon-wrap.purple { background: var(--purple-g); box-shadow: 0 4px 16px rgba(167,139,250,0.15); }

.stat-value {
  font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -0.8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.stat-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-3); margin-top: 3px; text-transform: uppercase;
}

/* ══════════════════════════════════════
   CHARTS GRID
══════════════════════════════════════ */
.charts-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.chart-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 18px 20px;
  transition: border-color 0.2s;
  position: relative; overflow: hidden;
}
.chart-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.chart-card:hover { border-color: var(--border-hov); }
.chart-card.span-2 { grid-column: span 2; }

.chart-header { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.chart-title {
  font-size: 11px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0.8px; text-transform: uppercase;
}
.chart-wrap { position: relative; height: 190px; }

/* ══════════════════════════════════════
   TOOLBAR
══════════════════════════════════════ */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 14px; flex-wrap: wrap;
}
.toolbar-right { display: flex; align-items: center; gap: 10px; }

.search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 16px; flex: 1; max-width: 420px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within {
  border-color: rgba(74,158,255,0.35);
  box-shadow: 0 0 0 3px rgba(74,158,255,0.08);
}
.search-icon { font-size: 13px; flex-shrink: 0; opacity: 0.5; }
.search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font); font-size: 13px;
}
.search-input::placeholder { color: var(--text-3); }

.record-count {
  font-family: var(--mono); font-size: 11px; color: var(--text-3); white-space: nowrap;
}

.filter-toggle {
  display: flex; gap: 3px;
  background: var(--glass-deep); border: 1px solid var(--border);
  border-radius: 10px; padding: 3px;
}
.filter-pill {
  background: transparent; border: none;
  border-radius: 8px; padding: 5px 12px;
  color: var(--text-2); font-family: var(--font);
  font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.filter-pill:hover { color: var(--text); }
.filter-pill.active { background: var(--blue-g); color: var(--blue); }

/* ══════════════════════════════════════
   TABLE
══════════════════════════════════════ */
.table-wrap {
  background: var(--glass-deep); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden;
  position: relative;
  max-height: calc(100vh - 230px);
}

.data-table tbody {
  display: block;
  overflow-y: auto;
  max-height: calc(100vh - 270px);
}

.data-table thead tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.data-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

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

.data-table th {
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--text-3); padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
  background: rgb(10,16,34);
  position: sticky; top: 0; text-transform: uppercase;
  z-index: 10;
}
.data-table td {
  padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.025);
  font-size: 12px; white-space: nowrap;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr {
  transition: background 0.15s;
}
.data-table tbody tr:hover td { background: rgba(255,255,255,0.025); }

.table-empty {
  text-align: center; padding: 48px;
  color: var(--text-3); font-size: 12px;
}

/* ── Badges ── */
.badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.8px; padding: 3px 8px;
  border-radius: 6px; text-transform: uppercase; white-space: nowrap;
}
.badge-student  { background: var(--blue-g);   color: var(--blue);   border: 1px solid rgba(74,158,255,0.2); }
.badge-faculty  { background: var(--gold-g);   color: var(--gold);   border: 1px solid rgba(240,192,64,0.2); }
.badge-employee { background: var(--green-g);  color: var(--green);  border: 1px solid rgba(74,222,128,0.2); }
.badge-blocked  { background: var(--red-g);    color: var(--red);    border: 1px solid rgba(248,113,113,0.2); }
.badge-active   { background: var(--green-g);  color: var(--green);  border: 1px solid rgba(74,222,128,0.15); }

/* ── Action buttons ── */
.btn-block, .btn-unblock {
  border-radius: 8px; padding: 5px 12px;
  font-size: 10px; font-weight: 700; cursor: pointer;
  transition: all 0.2s var(--spring); letter-spacing: 0.3px;
  text-transform: uppercase;
}
.btn-block {
  background: var(--red-g); border: 1px solid rgba(248,113,113,0.2); color: var(--red);
}
.btn-block:hover {
  background: rgba(248,113,113,0.25); transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(248,113,113,0.2);
}
.btn-unblock {
  background: var(--green-g); border: 1px solid rgba(74,222,128,0.2); color: var(--green);
}
.btn-unblock:hover {
  background: rgba(74,222,128,0.25); transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(74,222,128,0.2);
}

/* ══════════════════════════════════════
   TOP VISITORS
══════════════════════════════════════ */
.top-visitors-list { display: flex; flex-direction: column; gap: 10px; }

.visitor-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 20px;
  transition: all 0.25s var(--spring);
  animation: slideIn 0.35s var(--spring) both;
  position: relative; overflow: hidden;
}
.visitor-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.visitor-card:hover {
  border-color: var(--border-hov);
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.visitor-rank { font-size: 22px; min-width: 40px; text-align: center; }
.visitor-avatar {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(74,158,255,0.3), rgba(167,139,250,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: white; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.visitor-info { flex: 1; }
.visitor-name { font-size: 14px; font-weight: 700; color: var(--text); }
.visitor-college { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.visitor-streak { font-size: 11px; color: #ff9944; margin-top: 3px; font-weight: 600; }

.visitor-stats { text-align: right; }
.visitor-count-num { font-size: 28px; font-weight: 800; color: var(--text); letter-spacing: -1px; }
.visitor-count-label { font-size: 9px; color: var(--text-3); letter-spacing: 1.2px; text-transform: uppercase; }

/* ══════════════════════════════════════
   CONFIRM MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  animation: overlayIn 0.25s ease;
}
.modal-overlay.hidden { display: none; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  background: rgba(10,18,36,0.9);
  backdrop-filter: blur(48px);
  border: 1px solid var(--border-hov);
  border-radius: 24px; padding: 32px; max-width: 360px; width: 90%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  animation: modalIn 0.38s var(--spring);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon { font-size: 44px; margin-bottom: 14px; }
.modal-title { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.modal-msg   { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-top: 8px; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; }
.modal-btn {
  flex: 1; padding: 13px; border-radius: 13px;
  font-family: var(--font); font-size: 11px; font-weight: 700; cursor: pointer;
  transition: all 0.22s var(--spring); border: 1px solid transparent;
}
.modal-btn.cancel {
  background: var(--glass); border-color: var(--border); color: var(--text-2);
}
.modal-btn.cancel:hover { background: var(--glass-hov); color: var(--text); }
.modal-btn.confirm {
  background: rgba(248,113,113,0.85); color: white;
  box-shadow: 0 4px 16px rgba(248,113,113,0.25);
}
.modal-btn.confirm:hover { background: var(--red); transform: translateY(-1px); }
.modal-btn.confirm.unblock {
  background: rgba(74,222,128,0.85);
  box-shadow: 0 4px 16px rgba(74,222,128,0.25);
}
.modal-btn.confirm.unblock:hover { background: var(--green); }

/* ══════════════════════════════════════
   LIVE TOAST
══════════════════════════════════════ */
.live-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 12px;
  background: rgba(10,18,36,0.92);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(74,222,128,0.05);
  animation: toastIn 0.45s var(--spring); min-width: 260px;
}
.live-toast.toast-hide { animation: toastOut 0.3s var(--ease) forwards; }

@keyframes toastIn  { from { transform:translateX(120%);opacity:0; } to { transform:translateX(0);opacity:1; } }
@keyframes toastOut { from { transform:translateX(0);opacity:1; } to { transform:translateX(120%);opacity:0; } }

.toast-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 10px rgba(74,222,128,0.7);
  animation: pulse 1s ease-in-out infinite;
}
.toast-info { flex: 1; }
.toast-name   { font-size: 13px; font-weight: 700; color: var(--text); }
.toast-detail { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.toast-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.8px;
  padding: 3px 8px; border-radius: 6px; text-transform: uppercase;
  background: var(--blue-g); color: var(--blue);
}
.toast-badge.faculty { background: var(--gold-g); color: var(--gold); }

/* ══════════════════════════════════════
   CSV BUTTON
══════════════════════════════════════ */
.csv-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 14px;
  color: var(--text-2); font-family: var(--font);
  font-size: 11px; font-weight: 600; cursor: pointer;
  transition: all 0.25s var(--spring);
  white-space: nowrap;
}
.csv-btn:hover {
  background: var(--blue-g); border-color: rgba(74,158,255,0.3);
  color: var(--blue); transform: translateY(-1px);
}

/* ══════════════════════════════════════
   HEATMAP
══════════════════════════════════════ */
.heatmap-card { grid-column: 1 / -1; }

.heatmap-legend {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--text-3);
}
.hm-dot {
  width: 10px; height: 10px; border-radius: 3px; display: inline-block;
}
.hm-dot.low  { background: rgba(74,158,255,0.15); }
.hm-dot.mid  { background: rgba(74,158,255,0.45); }
.hm-dot.high { background: rgba(74,158,255,0.9); }

.heatmap-wrap {
  overflow-x: auto;
  padding: 4px 0 8px;
}
.heatmap-row {
  display: flex; align-items: center; gap: 4px;
}
.heatmap-label {
  font-size: 10px; color: var(--text-3);
  width: 28px; text-align: right; flex-shrink: 0;
  font-family: var(--mono);
}
.heatmap-cells { display: flex; gap: 4px; flex-wrap: wrap; }
.hm-cell {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(74,158,255,0.06);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--text-3);
  cursor: default;
  transition: all 0.2s var(--spring);
  position: relative;
}
.hm-cell:hover { transform: scale(1.3); z-index: 10; }
.hm-cell.v1 { background: rgba(74,158,255,0.15); color: rgba(74,158,255,0.7); }
.hm-cell.v2 { background: rgba(74,158,255,0.3);  color: rgba(74,158,255,0.8); border-color: rgba(74,158,255,0.2); }
.hm-cell.v3 { background: rgba(74,158,255,0.5);  color: white; border-color: rgba(74,158,255,0.3); }
.hm-cell.v4 { background: rgba(74,158,255,0.75); color: white; border-color: rgba(74,158,255,0.5); box-shadow: 0 4px 12px rgba(74,158,255,0.3); }
.hm-cell.v5 { background: rgba(74,158,255,0.95); color: white; border-color: rgba(74,158,255,0.7); box-shadow: 0 4px 16px rgba(74,158,255,0.4); }
.hm-cell.today-marker { box-shadow: 0 0 0 2px rgba(240,192,64,0.7) !important; }

/* ══════════════════════════════════════
   CUSTOM SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
::-webkit-scrollbar-corner { background: transparent; }

/* ══════════════════════════════════════
   REPORTS & SETTINGS
══════════════════════════════════════ */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.settings-card {
  background: var(--glass); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; cursor: pointer;
  transition: all 0.25s var(--spring);
  animation: cardFadeUp 0.4s var(--spring) both;
}
.settings-card:hover {
  background: var(--glass-hov); border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.settings-card:active { transform: scale(0.97); }
.settings-card-header::after {
  content: '›';
  margin-left: auto;
  font-size: 20px; color: var(--text-3);
  transition: transform 0.2s, color 0.2s;
}
.settings-card:hover .settings-card-header::after {
  transform: translateX(3px); color: var(--blue);
}
.settings-card:hover { border-color: var(--border-hov); }

.settings-card-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px;
}
.settings-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--glass-hov);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  border: 1px solid var(--border);
}
.settings-title { font-size: 14px; font-weight: 700; color: var(--text); }
.settings-sub   { font-size: 11px; color: var(--text-3); margin-top: 3px; }

.settings-body { display: none; } /* shown in modal only */
.settings-modal-body {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto; max-height: 70vh;
}
.settings-field { display: flex; flex-direction: column; gap: 8px; }
.settings-label { font-size: 9px; font-weight: 700; letter-spacing: 0.8px; color: var(--text-3); text-transform: uppercase; margin-bottom: 2px; }
.settings-row   { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.settings-checks {
  display: flex; flex-direction: column; gap: 8px;
}
.check-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-2); cursor: pointer;
}
.check-item input { accent-color: var(--blue); cursor: pointer; }

.settings-btn {
  width: 100%; padding: 9px;
  border: none; border-radius: 12px;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  cursor: pointer; transition: all 0.25s var(--spring);
  letter-spacing: 0.3px;
}
.settings-btn.blue {
  background: rgba(74,158,255,0.85); color: white;
  box-shadow: 0 4px 16px rgba(74,158,255,0.25);
}
.settings-btn.blue:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,158,255,0.35); }
.settings-btn.green {
  background: rgba(74,222,128,0.2); color: var(--green);
  border: 1px solid rgba(74,222,128,0.25);
}
.settings-btn.green:hover { background: rgba(74,222,128,0.3); transform: translateY(-2px); }
.settings-btn:active { transform: scale(0.97); }

.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.info-row:last-child { border-bottom: none; }
.info-key { font-size: 11px; color: var(--text-3); font-weight: 500; }
.info-val { font-size: 12px; color: var(--text-2); font-weight: 600; font-family: var(--mono); }

/* ── Settings extras ── */
.settings-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 7px 10px; color: var(--text);
  font-family: var(--font); font-size: 13px; outline: none;
  transition: border-color 0.2s;
}
.settings-input:focus { border-color: rgba(74,158,255,0.4); }
.settings-input::placeholder { color: var(--text-3); }

.settings-textarea {
  width: 100%; min-height: 80px; resize: vertical;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; color: var(--text);
  font-family: var(--font); font-size: 13px; outline: none;
  transition: border-color 0.2s;
}
.settings-textarea:focus { border-color: rgba(74,158,255,0.4); }
.settings-textarea::placeholder { color: var(--text-3); }

.settings-divider {
  height: 1px; background: var(--border); margin: 2px 0;
}

.settings-feedback {
  font-size: 11px; padding: 6px 12px;
  border-radius: 8px; text-align: center;
}
.settings-feedback.hidden { display: none; }
.settings-feedback.success { background: var(--green-g); color: var(--green); }
.settings-feedback.error   { background: var(--red-g);   color: var(--red); }

.settings-btn.danger {
  background: var(--red-g); border: 1px solid rgba(248,113,113,0.25);
  color: var(--red);
}
.settings-btn.danger:hover { background: rgba(248,113,113,0.25); transform: translateY(-1px); }

/* Toggle switch */
.settings-toggle {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.toggle-track {
  width: 40px; height: 22px; border-radius: 100px;
  background: rgba(255,255,255,0.1); border: 1px solid var(--border);
  position: relative; transition: background 0.25s;
  flex-shrink: 0;
}
.toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--text-3); transition: all 0.25s var(--spring);
}
.settings-toggle input { display: none; }
.settings-toggle input:checked ~ .toggle-track { background: rgba(74,158,255,0.4); border-color: rgba(74,158,255,0.4); }
.settings-toggle input:checked ~ .toggle-track .toggle-thumb { left: 20px; background: var(--blue); }
.toggle-label { font-size: 12px; color: var(--text-2); }

/* Color swatches */
.color-picker-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.color-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s var(--spring);
}
.color-swatch:hover  { transform: scale(1.15); }
.color-swatch.active { border-color: white; transform: scale(1.15); box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }
.custom-color-input {
  width: 72px; height: 28px; border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text-2); font-family: var(--mono);
  font-size: 11px; text-align: center;
  padding: 0 6px; cursor: text; outline: none;
  transition: border-color 0.2s;
}
.custom-color-input:focus { border-color: rgba(74,158,255,0.4); color: var(--text); }
.custom-color-input::placeholder { color: var(--text-3); }

/* Range input */
.settings-range {
  width: 100%; accent-color: var(--blue);
  height: 4px; border-radius: 100px; cursor: pointer;
}
.range-val { font-size: 11px; color: var(--text-3); font-family: var(--mono); }

/* ══════════════════════════════════════
   SETTINGS MODAL
══════════════════════════════════════ */
.settings-modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  animation: overlayIn 0.25s ease both;
}
.settings-modal-overlay.hidden { display: none; }

.settings-modal {
  background: rgba(10,16,34,0.95);
  backdrop-filter: blur(48px);
  border: 1px solid var(--border-hov);
  border-radius: 22px;
  width: 100%; max-width: 480px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  animation: modalIn 0.38s var(--spring) both;
  overflow: hidden;
}

.settings-modal-head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.settings-modal-close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-2); cursor: pointer;
  transition: all 0.2s var(--spring);
}
.settings-modal-close:hover { background: rgba(255,255,255,0.14); color: var(--text); transform: translateY(-50%) scale(1.1); }

/* Reset these to normal sizes inside modal */
.settings-modal .settings-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--text-3); text-transform: uppercase; margin-bottom: 4px; }
.settings-modal .check-item { font-size: 13px; gap: 8px; }
.settings-modal .settings-btn { padding: 12px; font-size: 13px; }
.settings-modal .settings-input { padding: 10px 14px; border-radius: 10px; font-size: 13px; }
.settings-modal .settings-textarea { font-size: 13px; }

/* ══════════════════════════════════════
   FLATPICKR CUSTOM THEME
══════════════════════════════════════ */
.flatpickr-calendar {
  background: rgba(12,20,45,0.6) !important;
  backdrop-filter: blur(48px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(48px) saturate(180%) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  font-family: var(--font) !important;
  padding: 12px !important;
  color: rgba(255,255,255,0.9) !important;
  width: 335px !important;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after { display: none !important; }

.flatpickr-months { padding: 4px 0 8px; }
.flatpickr-months .flatpickr-month { color: rgba(255,255,255,0.9) !important; }
.flatpickr-current-month {
  font-size: 14px !important; font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent !important;
  color: rgba(255,255,255,0.9) !important;
  font-weight: 700 !important;
}
.flatpickr-current-month input.cur-year {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 700 !important;
}
.flatpickr-prev-month, .flatpickr-next-month {
  color: rgba(255,255,255,0.5) !important;
  fill: rgba(255,255,255,0.5) !important;
  transition: all 0.2s !important;
}
.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  color: rgba(255,255,255,0.9) !important;
  fill: rgba(255,255,255,0.9) !important;
}

.flatpickr-weekdays { margin-bottom: 4px; }
span.flatpickr-weekday {
  color: rgba(255,255,255,0.3) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

.flatpickr-day {
  color: rgba(255,255,255,0.75) !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  border: none !important;
  height: 38px !important;
  line-height: 38px !important;
  max-width: 38px !important;
  transition: all 0.18s !important;
}
.flatpickr-day:hover {
  background: rgba(255,255,255,0.08) !important;
  color: white !important;
}
.flatpickr-day.today {
  border: 1.5px solid rgba(74,158,255,0.5) !important;
  color: var(--blue) !important;
  font-weight: 700 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--blue) !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(74,158,255,0.4) !important;
}
.flatpickr-day.inRange {
  background: rgba(74,158,255,0.15) !important;
  color: rgba(255,255,255,0.9) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.flatpickr-day.startRange { border-radius: 10px 0 0 10px !important; }
.flatpickr-day.endRange   { border-radius: 0 10px 10px 0 !important; }
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: transparent !important;
  pointer-events: none !important;
  height: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
}

/* ══════════════════════════════════════
   CUSTOM CHECKBOXES & RADIO BUTTONS
══════════════════════════════════════ */
.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s var(--spring);
}

.check-item input[type="radio"] {
  border-radius: 50%;
}

.check-item input[type="checkbox"]:checked,
.check-item input[type="radio"]:checked {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(74,158,255,0.4);
}

.check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 4px; height: 7px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

.check-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
}

.check-item input[type="checkbox"]:hover,
.check-item input[type="radio"]:hover {
  border-color: rgba(74,158,255,0.5);
  background: rgba(74,158,255,0.1);
}


/* ══════════════════════════════════════
   STAT FILTER BAR
══════════════════════════════════════ */
.stat-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.15);
}

.stat-filter-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-right: 4px;
}

.stat-filter-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 7px 12px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 28px;
  min-width: 150px;
}

.stat-filter-select:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.95);
}

.stat-filter-select:focus {
  border-color: rgba(74,158,255,0.5);
  background-color: rgba(74,158,255,0.08);
  color: rgba(255,255,255,0.95);
}

.stat-filter-select option {
  background: #0d1628;
  color: rgba(255,255,255,0.85);
  padding: 8px;
}

.stat-filter-clear {
  display: none;
  align-items: center;
  gap: 5px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 10px;
  padding: 7px 14px;
  color: rgba(248,113,113,0.8);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
}

.stat-filter-clear:hover {
  background: rgba(248,113,113,0.15);
  border-color: rgba(248,113,113,0.4);
  color: var(--red);
}
/* ══════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════ */
.neu-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  z-index: 99999;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.28,0.64,1), opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.neu-toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.neu-toast-success {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.neu-toast-error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
}

.neu-toast-icon {
  font-size: 15px;
  font-weight: 700;
}