/* ============================================================
   summer.css  — Sahityika Summer Theme
   Uses generic semantic class names so base.html never needs
   to know which theme is active.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --color-warm-cream:       #fdf6e3;
  --color-dark-bark:        #1c0e00;
  --color-golden-amber:     #d4820a;
  --color-white:            #ffffff;
  --color-mango-yellow:     #f5c842;
  --color-deep-earth:       #2d1400;
  --color-leaf-green:       #4a7c3f;
  --color-sky-blue:         #a8d8ea;

  --color-warm-cream-rgb:      253, 246, 227;
  --color-dark-bark-rgb:       28, 14, 0;
  --color-golden-amber-rgb:    212, 130, 10;
  --color-white-rgb:           255, 255, 255;
  --color-mango-yellow-rgb:    245, 200, 66;
  --color-deep-earth-rgb:      45, 20, 0;
  --color-leaf-green-rgb:      74, 124, 63;
  --color-sky-blue-rgb:        168, 216, 234;

  --bs-primary:        var(--color-golden-amber);
  --bs-primary-rgb:    var(--color-golden-amber-rgb);
  --bs-secondary:      var(--color-leaf-green);
  --bs-secondary-rgb:  var(--color-leaf-green-rgb);
  --bs-dark:           var(--color-dark-bark);
  --bs-dark-rgb:       var(--color-dark-bark-rgb);
  --bs-light:          var(--color-warm-cream);
  --bs-light-rgb:      var(--color-warm-cream-rgb);
  --bs-white:          var(--color-white);
  --bs-white-rgb:      var(--color-white-rgb);

  --bs-body-bg:          #0f0600;
  --bs-body-color:       #f5ead2;
  --bs-link-color:       var(--color-mango-yellow);
  --bs-link-hover-color: var(--color-sky-blue);

  --bs-navbar-bg:              rgba(15, 6, 0, 0.94);
  --bs-card-bg:                rgba(253, 246, 227, 0.98);
  --bs-modal-bg:               rgba(253, 246, 227, 0.98);
  --bs-dropdown-bg:            rgba(253, 246, 227, 0.98);
  --bs-dropdown-link-hover-bg:    rgba(245, 200, 66, 0.12);
  --bs-dropdown-link-hover-color: var(--color-dark-bark);

  --bs-border-color:    rgba(245, 200, 66, 0.4);
  --bs-text-muted:      #c4a87a;
  --bs-headings-color:  var(--color-mango-yellow);

  --bs-body-font-family:    'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bs-heading-font-family: 'Playfair Display', 'Times New Roman', serif;
}


/* Animations */

@keyframes pollenDrift {
  0%   { transform: translateY(-5vh)  translateX(0);     opacity: 0; }
  10%  { opacity: 0.75; }
  40%  { transform: translateY(40vh)  translateX(18px);  }
  100% { transform: translateY(115vh) translateX(-8px);  opacity: 0; }
}

@keyframes pollenBg {
  0%   { transform: translateY(-5%);  opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(110%); opacity: 0; }
}

@keyframes fireflyGlow {
  0%   { transform: translate(0, 0);          opacity: 0;   box-shadow: 0 0 4px  2px rgba(210, 255, 70, 0.55); }
  15%  { opacity: 0.9; }
  30%  { transform: translate(28px, -20px);   opacity: 0.7; box-shadow: 0 0 10px 5px rgba(210, 255, 70, 0.80); }
  55%  { transform: translate(-18px, -38px);  opacity: 1;   box-shadow: 0 0 14px 7px rgba(210, 255, 70, 1.00); }
  75%  { transform: translate(14px, -58px);   opacity: 0.5; box-shadow: 0 0 7px  3px rgba(210, 255, 70, 0.50); }
  100% { transform: translate(-6px, -82px);   opacity: 0;   box-shadow: none; }
}

@keyframes sunGlowText {
  0%, 100% { text-shadow: 0 0 6px  rgba(245, 200, 66, 0.50); }
  50%       { text-shadow: 0 0 18px rgba(245, 200, 66, 0.90),
                            0 0 36px rgba(212, 130, 10,  0.40); }
}

@keyframes leafSway {
  0%, 100% { transform: translateY(0)  rotate(-2deg); }
  50%       { transform: translateY(8px) rotate(3deg); }
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.02); }
}


/* Global */

body, html {
  height: 100%;
  margin: 0;
  background: radial-gradient(circle at 60% 15%, #2d1200 0%, #0f0600 55%, #060200 100%);
  background-attachment: fixed;
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  position: relative;
  overflow-x: hidden;
}

::selection {
  background-color: rgba(var(--color-mango-yellow-rgb), 0.80);
  color: #1c0e00;
}

/* Floating golden dust motes */
body::before {
  content: "";
  position: fixed;
  inset: -50px 0 0 0;
  background-image:
    radial-gradient(1.5px 1.5px at  8% 20%, rgba(245,200,66,0.55) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 30%  5%, rgba(245,200,66,0.35) 0, transparent 60%),
    radial-gradient(2px   2px   at 60% 12%, rgba(245,200,66,0.50) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 85% 30%, rgba(245,200,66,0.40) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 18% 75%, rgba(245,200,66,0.45) 0, transparent 60%),
    radial-gradient(2px   2px   at 72% 85%, rgba(245,200,66,0.50) 0, transparent 60%);
  pointer-events: none;
  animation: pollenBg 45s linear infinite;
  opacity: 0.55;
  z-index: 1;
}

/* Golden sunrise haze at top of viewport */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at 50% 0, rgba(245, 200, 66, 0.15) 0, transparent 65%);
  filter: blur(5px);
  opacity: 0.65;
}


/* Layout */

.wrapper {
  margin-top: 3rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.content {
  flex: 1;
  position: relative;
  z-index: 3;
}


/* ── Theme Banner ─────────────────────────────────────────────────────────── */

.theme-banner {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(28, 14, 0, 0.96),
    rgba(74, 124, 63, 0.88),
    rgba(212, 130, 10, 0.82),
    rgba(28, 14, 0, 0.96)
  );
  color: var(--bs-white);
  font-family: var(--bs-heading-font-family);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(245, 200, 66, 0.50);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.theme-banner span {
  color: var(--color-mango-yellow);
}

.theme-banner p {
  margin: 0;
  animation: sunGlowText 5s ease-in-out infinite;
}


/* ── Particles — Pollen ───────────────────────────────────────────────────── */

.theme-particle,
.summer-pollen {
  position: fixed;
  top: -5vh;
  color: rgba(245, 200, 66, 0.80);
  text-shadow: 0 0 5px rgba(245, 200, 66, 0.60);
  font-size: 0.65rem;
  pointer-events: none;
  z-index: 4;
  animation: pollenDrift linear infinite;
}


/* ── Fireflies ────────────────────────────────────────────────────────────── */

.summer-firefly {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(210, 255, 70, 0.90);
  box-shadow: 0 0 8px 4px rgba(210, 255, 70, 0.70);
  pointer-events: none;
  z-index: 4;
  animation: fireflyGlow ease-in-out infinite;
}


/* ── Ornaments — Summer: sun-disc pendants ────────────────────────────────── */

.theme-ornament {
  position: fixed;
  top: -10px;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 35% 30%, #fffbea 0%, #f5c842 40%, #d4820a 90%);
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(245, 200, 66, 0.80),
    0 4px 10px rgba(0, 0, 0, 0.30);
  animation: leafSway 5s ease-in-out infinite;
  transform-origin: top center;
  pointer-events: none;
  z-index: 4;
}

.theme-ornament::before {
  content: "";
  position: absolute;
  top: -18px; left: 50%;
  width: 2px; height: 18px;
  background: linear-gradient(to bottom, #d4820a, rgba(212, 130, 10, 0.10));
  transform: translateX(-50%);
}


/* ── Decoration Layer — warm grass / amber glow at base ──────────────────── */

.theme-decoration-layer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--snow-depth, 0px);
  max-height: 140px;
  pointer-events: none;
  z-index: 5;
  background:
    radial-gradient(ellipse at 10%  120%, rgba(74,124,63,0.22) 0, rgba(74,124,63,0.06) 45%, transparent 70%),
    radial-gradient(ellipse at 50%  125%, rgba(245,200,66,0.15) 0, rgba(245,200,66,0.04) 50%, transparent 75%),
    radial-gradient(ellipse at 90%  120%, rgba(74,124,63,0.22) 0, rgba(74,124,63,0.06) 45%, transparent 70%);
  transition: height 1s ease-out, opacity 1s ease-out;
  opacity: 0;
}


/* ── Audio Toggle ─────────────────────────────────────────────────────────── */

.theme-audio-btn {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, 0.70);
  background: rgba(15, 6, 0, 0.90);
  color: #f5c842;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.theme-audio-btn--on {
  background: radial-gradient(circle at 30% 20%, #fffbea 0%, #f5c842 30%, #d4820a 80%);
  color: #1c0e00;
  box-shadow: 0 0 18px rgba(245, 200, 66, 0.80);
  transform: translateY(-2px);
}

.theme-audio-btn:hover {
  transform: translateY(-2px) scale(1.03);
}


/* Typography */

.text-primary { color: var(--bs-primary) !important; }
.bg-dark       { background-color: var(--bs-dark)  !important; }
.bg-light      { background-color: var(--bs-light) !important; }
.bg-theme      { background-color: var(--bs-dark)  !important; }

p, span, div, li { color: var(--bs-body-color); }
.text-muted { color: var(--bs-text-muted) !important; }

h1, h2, h3, h4, h5, h6 {
  color: var(--bs-headings-color);
  font-family: var(--bs-heading-font-family);
  letter-spacing: 0.05em;
}

a {
  color: var(--bs-link-color);
  transition: all 0.2s ease;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--bs-link-hover-color); text-decoration: underline; }

hr {
  border: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--bs-primary), transparent);
  opacity: 0.9;
}


/* Buttons */

.btn-primary {
  background-image: linear-gradient(135deg, #d4820a, #e8a020);
  border-color: #d4820a;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.4rem;
  padding-block: 0.55rem;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active {
  background-image: linear-gradient(135deg, #e8a020, #f5c842);
  border-color: #f5c842;
}

.btn-outline-primary {
  color: var(--color-mango-yellow);
  border-color: rgba(245, 200, 66, 0.70);
  background-color: transparent;
  border-radius: 999px;
  border-width: 2px;
  padding-inline: 1.4rem;
  padding-block: 0.55rem;
  font-weight: 500;
}
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active {
  color: #1c0e00;
  background-color: rgba(245, 200, 66, 0.15);
  border-color: #f5c842;
}

.btn-secondary {
  background-image: linear-gradient(135deg, #4a7c3f, #5d9c50);
  border-color: #4a7c3f;
  color: #ffffff;
  border-radius: 999px;
  padding-inline: 1.35rem;
  padding-block: 0.5rem;
}
.btn-secondary:hover {
  background-image: linear-gradient(135deg, #5d9c50, #f5c842);
  border-color: #f5c842;
}

.btn-outline-secondary {
  color: var(--color-sky-blue);
  border-color: rgba(168, 216, 234, 0.50);
  background-color: transparent;
  border-radius: 999px;
  border-width: 2px;
  padding-inline: 1.4rem;
  padding-block: 0.55rem;
  font-weight: 500;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:active {
  color: #1c0e00;
  background-color: rgba(168, 216, 234, 0.15);
  border-color: var(--color-sky-blue);
}


/* ── Cards ───────────────────────────────────────────────────────────────── */

.card {
  background-color: var(--bs-card-bg);
  border-radius: 18px;
  border: 1px solid rgba(245, 200, 66, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  color: #1c0e00;
}
.card:hover    { border-color: rgba(245, 200, 66, 0.70); }
.card-header   { background: linear-gradient(90deg, rgba(212,130,10,0.10), rgba(245,200,66,0.14)); border-bottom: 1px solid rgba(245,200,66,0.40); color: var(--bs-headings-color); font-weight: 600; }
.card-body     { color: #3d2b0a; }
.card-title    { color: var(--bs-headings-color); }


/* Modals */

.modal-content {
  background-color: var(--bs-modal-bg);
  border-radius: 18px;
  border: 1px solid rgba(245, 200, 66, 0.50);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.60);
  background: radial-gradient(circle at top, #fdf6e3 0%, #f8eecc 50%, #f0e0a8 100%);
  color: #1c0e00;
  z-index: 5000 !important;
}
.modal-body, .modal-body p, .modal-body h5 { color: #1c0e00; }
.modal-header  { border-bottom-color: rgba(245,200,66,0.40); background-image: linear-gradient(135deg, #d4820a, #e8a020); }
.modal-footer  { border-top-color: rgba(245,200,66,0.40); }
.modal-backdrop.show { background-color: rgba(0,0,0,0.45); z-index: 4444 !important; }
.modal { z-index: 5000 !important; }


/* Dropdowns */

.dropdown-menu {
  background:
    linear-gradient(
      180deg,
      #2b1600,
      #1a0c00
    );

  border: 1px solid rgba(245,200,66,.50);

  box-shadow:
    0 0 18px rgba(245,200,66,.18),
    0 8px 24px rgba(0,0,0,.40);

  backdrop-filter: blur(10px);
}

.dropdown-header {
  color: #f5c842;
  font-weight: 600;
}

.dropdown-item {
  color: #f5ead2;
  transition: all .18s ease;
}

.dropdown-item i {
  color: #f5c842;
  width: 1.2rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(245,200,66,.12);
  color: #f5c842;
}

.dropdown-item:hover i,
.dropdown-item:focus i {
  color: #fff4ba;
}

.dropdown-divider {
  border-color: rgba(245,200,66,.20);
}

.dropdown-item.active,
.dropdown-item:active {
  background: rgba(245,200,66,.20);
  color: #f5c842;
}
.dropdown-item i {
    transition: all .2s ease;
}

.dropdown-item:hover i {
    transform: scale(1.15);
}

/* List Group */

.list-group-item {
  border-color: rgba(245, 200, 66, 0.50);
  background-color: transparent;
  color: var(--bs-body-color);
  transition: all 0.2s ease;
}
.list-group-item:hover { background-color: rgba(245,200,66,0.08); transform: translateX(6px); }


/* Accordion */

.accordion { --bs-accordion-bg: transparent; }
.accordion-item { background-color: transparent; border: 1px solid rgba(245,200,66,0.50); border-radius: 14px; margin-bottom: 0.75rem; transition: all 0.22s ease; }
.accordion-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.30); transform: translateY(-2px); }
.accordion-button { background-color: var(--bs-dark); border: none; transition: all 0.2s ease-in-out; color: #3d2b0a; font-weight: 600; border-radius: 14px; }
.accordion-button.collapsed { color: rgba(61,43,10,0.72); background: var(--bs-dark); }
.accordion-button:not(.collapsed) { background: linear-gradient(90deg, #d4820a, #f5c842); color: #1c0e00; box-shadow: 0 0 18px rgba(245,200,66,0.60); }
.accordion-button:not(.collapsed)::after { filter: brightness(0.1); }
.accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(245,200,66,0.40); }
.accordion-body { background-color: var(--bs-light); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top: 1px solid rgba(245,200,66,0.40); color: #3d2b0a; }


/* Tables */

.table { --bs-table-bg: var(--bs-dark); --bs-table-striped-bg: rgba(245,200,66,0.08); --bs-table-border-color: rgba(245,200,66,0.50); border-collapse: separate; border-spacing: 0; }
.table thead { background: linear-gradient(90deg, #d4820a, #f5c842); border-bottom: 2px solid rgba(28,14,0,0.90); }
.table th { font-weight: 700; color: #1c0e00; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; }
.table td { vertical-align: middle; border-bottom: 1px solid rgba(245,200,66,0.40); color: var(--bs-body-color); }
.table-responsive { border-radius: 14px; overflow: hidden; border: 1px solid rgba(245,200,66,0.60); }


/* Navbar */

.navbar { background-color: var(--bs-navbar-bg) !important; backdrop-filter: blur(8px); border-bottom: 1px solid rgba(245,200,66,0.55); box-shadow: 0 8px 24px rgba(0,0,0,0.40); }


/* Forms */

.form-control, .form-select { background-color: var(--color-warm-cream); border: 1px solid rgba(245,200,66,0.70); color: #1c0e00; transition: all 0.2s ease-in-out; }
.form-control:focus, .form-select:focus { background-color: var(--color-warm-cream); border-color: #f5c842; box-shadow: 0 0 0 0.2rem rgba(245,200,66,0.45); color: #1c0e00; }
.form-control[type="file"]::file-selector-button { background: linear-gradient(135deg, #4a7c3f, #5d9c50); color: #ffffff; border: none; padding: 0.4rem 0.8rem; margin-right: 0.75rem; border-radius: 4px; font-weight: 500; cursor: pointer; }

.alert { border: 1px solid rgba(245,200,66,0.70); box-shadow: 0 4px 15px rgba(0,0,0,0.20); }
.badge { box-shadow: 0 0 10px rgba(245,200,66,0.40); }
.progress { background-color: rgba(28,14,0,0.70); border: 1px solid rgba(245,200,66,0.50); }
.progress-bar { background-image: linear-gradient(90deg, #d4820a, #f5c842); box-shadow: 0 0 10px rgba(245,200,66,0.70); }


/* Scrollbar */

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #060200; }
::-webkit-scrollbar-thumb { background-color: #d4820a; border-radius: 10px; border: 2px solid #060200; }
::-webkit-scrollbar-thumb:hover { background-color: #e8a020; }
::-webkit-scrollbar-corner { background: transparent; }


/* Calendar */

.calendar { background: radial-gradient(circle at top, rgba(28,14,0,0.96), rgba(15,6,0,0.98)); border-radius: 18px; border: 1px solid rgba(245,200,66,0.35); box-shadow: 0 16px 35px rgba(0,0,0,0.50); overflow: hidden; }
.calendar .table { background: transparent; }
.calendar thead th { background: linear-gradient(90deg, #d4820a, #f5c842); color: #1c0e00 !important; border-bottom: 1px solid rgba(245,200,66,0.70); font-weight: 600; }
.calendar .calendar-cell { background: rgba(15,6,0,0.96); color: var(--bs-body-color); border-color: rgba(245,200,66,0.18); }
.calendar .calendar-cell:hover { background: radial-gradient(circle at top, rgba(245,200,66,0.12), rgba(15,6,0,1)); box-shadow: 0 0 14px rgba(245,200,66,0.35); animation: none; }
.calendar .calendar-cell .date.badge { background: rgba(245,200,66,0.96); color: #1c0e00; }
.calendar .item-preview { background: rgba(253,246,227,0.10); border-color: rgba(245,200,66,0.70) !important; color: var(--bs-body-color); }
.calendar .item-preview small, .calendar .item-preview .text-muted { color: rgba(168,216,234,0.90) !important; }

.calendar-cell { transition: all 0.2s ease-in-out; border: 1px solid rgba(245,200,66,0.20); }
.calendar-cell:hover { background-color: rgba(245,200,66,0.16); box-shadow: 0 0 15px rgba(245,200,66,0.40); animation: subtlePulse 1.6s ease-in-out infinite; }
.fact-preview { background-color: rgba(var(--color-warm-cream-rgb),0.90); transition: all 0.2s ease-in-out; border-left: 3px solid var(--bs-primary); color: #3d2b0a; }
.fact-preview:hover { background-color: rgba(245,200,66,0.16); transform: translateX(6px); box-shadow: 0 0 14px rgba(245,200,66,0.35); }
.hover-shadow:hover { box-shadow: 0 0 20px rgba(245,200,66,0.50); }


/* Theme Picker in Nav */

.theme-picker__menu  { min-width: 200px; }
.theme-picker__option { display: flex; align-items: center; gap: 8px; }
.theme-picker__icon   { font-size: 1rem; width: 1.4rem; text-align: center; }


/* Notification Bell */

.notif-bell { position: relative; display: inline-flex; align-items: center; justify-content: center; color: #c4a87a; font-size: 17px; cursor: pointer; transition: color 0.25s ease, transform 0.25s ease; }
.notif-bell:hover { color: #f5ead2; transform: translateY(-1px); }
.notif-badge { position: absolute; top: -5px; right: -7px; background: #b06010; color: #fdfaf6; border-radius: 50%; padding: 2px 6px; font-size: 10px; font-weight: 700; box-shadow: 0 0 0 2px #1a0800; line-height: 1.4; }
.notif-dropdown { position: fixed; width: 310px; background: #1a0f02; border: 1px solid #4a3820; border-radius: 12px; z-index: 9999; box-shadow: 0 12px 32px rgba(0,0,0,0.60); overflow: hidden; animation: notifFadeIn 0.2s ease; }
.notif-header { padding: 12px 16px 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8c7040; border-bottom: 1px solid #2a1a08; }
.notif-dropdown ul { list-style: none; margin: 0; padding: 4px 0; max-height: 280px; overflow-y: auto; }
.notif-dropdown ul li { padding: 12px 16px; font-size: 13.5px; color: #d6c8a2; line-height: 1.55; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s ease; font-family: "Georgia", serif; }
.notif-dropdown ul li:hover { background: rgba(255,255,255,0.05); }
.notif-dropdown ul li:last-child { border-bottom: none; }
#notifEmptyDesktop, #notifEmptyMobile { margin: 0; padding: 18px; text-align: center; font-size: 13px; color: #a8904a; font-style: italic; display: none; }
.notif-dropdown::-webkit-scrollbar { width: 5px; }
.notif-dropdown::-webkit-scrollbar-thumb { background: #6c5028; border-radius: 4px; }
.notif-dropdown::-webkit-scrollbar-track { background: transparent; }

@keyframes notifFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }