
    @import url("/css/dark.css?3244824415");
    :root {
    --theme-primary-rgb: 39,44,48;
    --theme-secondary-rgb: 108,117,125;

    --theme-bg-page-rgb: 34,34,34;
    --theme-bg-primary-rgb: 52,58,64;
    --theme-bg-secondary-rgb: 33,37,41;

        }

    :root {
        --theme-opacity: 0.44;
    }

    .navbar-primary {
        backdrop-filter: blur(10px);
    }

    .page-header {
        background: var(--theme-gradient);
    }


    .title {
        font-weight: 900;
        text-transform: uppercase;
    }

    .page-header {
        text-align: center;
    }

    :root {
        --theme-border-radius: 0.43rem;
    }

    .btn, .badge, .card,
    div.table-responsive,
    .form-control, .form-select,
    .form-switch .form-check-input,
    .text-editor .toolbar-bubble .toolbar,
    .modal-content,
    .input-group-text,
    .page-item .page-link.page-link, .page-item span,
    .btn-group > .btn,
    .input-group > .form-control,
    .input-group > .form-select,
    .input-group > .input-group-text,
    .input-group > .btn,
    div.swal2-popup, button.swal2-styled.swal2-styled, .swal2-input, .swal2-select,
    .ace_editor {
        border-radius: var(--theme-border-radius);
    }

    .card-img-top {
        border-top-left-radius: calc(var(--theme-border-radius) - 1px);
        border-top-right-radius: calc(var(--theme-border-radius) - 1px);
    }

    .table {
        margin-bottom: 0;
    }

    .table-responsive {
        margin-bottom: 1rem;
    }

            .page-item .page-link {
            height: 35px;
            width: 35px;
            margin: 0 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    


	/* ============================================================
   Minimal Light-Black — Tidy + Square + Smokey-Blue Glow
   Navbar fixed to top (no gap)
   ============================================================ */

/* ---------- Tokens (simple + widely supported) ---------- */
:root{
  color-scheme: dark;

  /* Palette */
  --bg-900: #121416; /* page */
  --bg-850: #171a1d; /* surface 1 */
  --bg-800: #1b1f23; /* surface 2 */
  --line-700: rgba(255,255,255,0.08);

  --text-100: #e6e9ee;
  --text-200: #cfd6df;
  --muted-400:#9aa3af;

  /* Accent + glow (reliable rgba) */
  --accent-500: #6ea8ff;
  --glow-1: 0 0 10px rgba(110,168,255,.45);
  --glow-2: 0 0 26px rgba(110,168,255,.25);
  --glow-3: 0 0 48px rgba(110,168,255,.18);

  /* Shape &amp; motion */
  --radius: 4px; /* square-ish, no ovals */
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Navbar metrics */
  --nav-h: 60px; /* keep in sync with .nav-inner min-height */
}

/* ---------- Reset/structure ---------- */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body { height: 100%; scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }               /* kill any default gaps */
body{
  background: var(--bg-900);                         /* flat, no radial ovals */
  color: var(--text-100);
  font: 400 16px/1.6 system-ui,-apple-system,Segoe UI,Inter,Roboto,Helvetica,Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-h);                          /* make room for fixed nav */
}

/* If any framework adds margin to first element, nuke it */
body &gt; :first-child { margin-top: 0 !important; }

/* Subtle ambient shimmer (very light + square-safe) */
body::before{
  content:&quot;&quot;;
  position:fixed;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(40% 40% at 20% 15%, rgba(110,168,255,.05), transparent 60%),
    radial-gradient(35% 35% at 80% 10%, rgba(110,168,255,.035), transparent 60%);
  filter: blur(24px);
  animation: drift 30s linear infinite;
  opacity:.4;
  z-index: 0;
}

.container{ width:min(1100px,92vw); margin:0 auto; padding:16px; position: relative; z-index: 1; }
section{ padding:40px 0; }

/* ---------- Navbar (fixed top, compact, visible smokey-blue glow) ---------- */
/* Expected HTML:
&lt;header class=&quot;navbar&quot;&gt;
  &lt;div class=&quot;container nav-inner&quot;&gt;
    &lt;a class=&quot;brand&quot; href=&quot;/&quot;&gt;Brand&lt;/a&gt;
    &lt;nav class=&quot;nav&quot;&gt;
      &lt;ul class=&quot;menu&quot;&gt;
        &lt;li&gt;&lt;a class=&quot;is-active&quot; href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        ...
      &lt;/ul&gt;
    &lt;/nav&gt;
    &lt;div class=&quot;nav-end&quot;&gt;...&lt;/div&gt;
  &lt;/div&gt;
&lt;/header&gt;
*/

.navbar{
  position: fixed;                 /* &lt;— sits at the very top */
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18,20,22,0.88) !important;   /* read over images/bg */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow:
    var(--glow-1),
    var(--glow-2),
    var(--glow-3);                                   /* outer smokey glow */
}

/* Thin glowing line under the bar */
.navbar::after{
  content:&quot;&quot;;
  position:absolute; left:0; right:0; bottom:-1px; height:2px;
  background: linear-gradient(90deg, transparent, rgba(110,168,255,.75), transparent);
  filter: blur(1px);
  pointer-events: none;
}

/* Optional soft inner haze across the bar */
.navbar::before{
  content:&quot;&quot;;
  position:absolute; inset:0;
  background: linear-gradient(90deg,
    rgba(110,168,255,.06),
    rgba(110,168,255,.03) 25%,
    rgba(110,168,255,.03) 75%,
    rgba(110,168,255,.06));
  opacity:.5;
  pointer-events:none;
}

.nav-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  min-height: var(--nav-h);
}

/* brand — square edges, compact */
.brand{
  color:var(--text-100); text-decoration:none; font-weight:600; letter-spacing:.2px;
  padding:6px 8px; border-radius: var(--radius);
  transition: transform .18s var(--ease), text-shadow .18s var(--ease);
}
.brand:hover{ transform: translateY(-1px); text-shadow: var(--glow-1); }

/* compact, neat menu */
.menu{
  margin:0; padding:0; list-style:none; display:flex; gap:8px; /* close together */
  align-items: center;
}
.menu&gt;li{ display:flex; }

.menu a{
  display:inline-flex; align-items:center; height:38px;
  padding:0 8px;                    /* tight width */
  border-radius: var(--radius);     /* not rounded */
  text-decoration:none;
  color:var(--text-200);
  font-size:.95rem; letter-spacing:.01em;
  transition: color .15s var(--ease), background-color .15s var(--ease),
              box-shadow .2s var(--ease), transform .15s var(--ease), text-shadow .2s var(--ease);
}

/* hover/active glow */
.menu a:hover,
.menu a:focus-visible{
  color:#fff;
  background: rgba(110,168,255,.12);
  box-shadow: var(--glow-1), var(--glow-2);
  text-shadow: 0 0 6px rgba(110,168,255,.35);
  transform: translateY(-1px);
  outline:none;
}

.menu a.is-active{
  color:#fff;
  background: rgba(110,168,255,.16);
  box-shadow: var(--glow-1), inset 0 0 0 1px rgba(110,168,255,.28);
}

/* Right-side items neatness (avatars/buttons) */
.nav-end{ display:flex; align-items:center; gap:8px; }
.navbar .avatar,
.navbar img[alt*=&quot;avatar&quot;]{ width:32px; height:32px; border-radius:50%; margin-left:8px; }

/* Kill framework paddings/margins that add gaps */
.navbar .container,
.navbar .container-fluid { padding-left:12px !important; padding-right:12px !important; }
.navbar .navbar-brand { margin-right:8px !important; padding:0 6px !important; line-height:38px; height:38px; }
.navbar .navbar-nav { gap:8px !important; align-items:center; }
.navbar .navbar-nav .nav-item { margin:0 !important; }
.navbar .navbar-nav .nav-link { padding:0 8px !important; line-height:38px; height:38px; border-radius: var(--radius); color:#cfd6df !important; }
.navbar .nav-link &gt; i,
.navbar .nav-link &gt; svg { margin-right:6px !important; }

/* Hover/active for framework links */
.navbar .nav-link:hover,
.navbar .nav-link:focus-visible{
  color:#fff !important;
  background: rgba(110,168,255,.12) !important;
  box-shadow: var(--glow-1), var(--glow-2) !important;
  text-shadow: 0 0 6px rgba(110,168,255,.35);
  transform: translateY(-1px);
  outline:none;
}
.navbar .nav-link.active{
  color:#fff !important;
  background: rgba(110,168,255,.16) !important;
  box-shadow: var(--glow-1), inset 0 0 0 1px rgba(110,168,255,.28) !important;
}

/* ---------- Typography &amp; layout ---------- */
h1,h2,h3{ line-height:1.2; margin:0 0 .6em; letter-spacing:.2px; }
h1{ font-size: clamp(2rem, 3.6vw, 2.6rem); font-weight:700; }
h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight:650; }
h3{ font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight:600; }
p{ margin:0 0 1em; color:var(--text-200); }

a{ color:var(--accent-500); text-underline-offset:3px; }
a:hover{ color:#fff; text-shadow:0 0 6px rgba(110,168,255,.25); }

hr{
  border:0; border-top:1px solid var(--line-700);
  margin:28px 0; opacity:.9;
}

/* ---------- Cards (square, tidy) ---------- */
.card{
  background: var(--bg-850);
  border:1px solid var(--line-700);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.card:hover{ transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.30); }

/* ---------- Buttons ---------- */
.btn{
  appearance:none; cursor:pointer;
  background: var(--bg-800);
  color: var(--text-100);
  border:1px solid var(--line-700);
  border-radius: var(--radius);
  padding:10px 14px;
  font-weight:600; letter-spacing:.2px;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background-color .15s var(--ease);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(180deg, rgba(110,168,255,.22), rgba(110,168,255,.10));
  border-color: rgba(110,168,255,.45);
  box-shadow: var(--glow-1);
}
.btn-primary:hover{ box-shadow: var(--glow-1), var(--glow-2); }

/* ---------- Forms ---------- */
input, textarea, select{
  width:100%;
  background: var(--bg-850);
  color: var(--text-100);
  border:1px solid var(--line-700);
  border-radius: var(--radius);
  padding:10px 12px; outline:none;
  transition: border-color .15s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(110,168,255,.6);
  box-shadow: 0 0 0 3px rgba(110,168,255,.18);
}

/* ---------- Utility ---------- */
.muted{ color:var(--muted-400); }
.center{ display:grid; place-items:center; }
.grid{
  display:grid; gap:16px;
  grid-template-columns: repeat(12, 1fr);
}
.col-12{ grid-column: span 12; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }

/* ---------- Subtle, site-wide animation ---------- */
.animate-in{ opacity:0; transform: translateY(6px); animation: rise-in .5s var(--ease) .05s both; }
.delay-1{ animation-delay:.1s; }
.delay-2{ animation-delay:.18s; }
.delay-3{ animation-delay:.26s; }

/* ---------- Footer ---------- */
footer{
  border-top:1px solid var(--line-700);
  background:#14171a;
  color:var(--muted-400);
  padding:24px 0;
}

/* ---------- Accessibility ---------- */
:where(a,button,input,select,textarea):focus-visible{
  outline:2px solid rgba(110,168,255,.65);
  outline-offset:2px;
  border-radius: var(--radius);
}

/* ---------- Scrollbar (minimal, square) ---------- */
*{ scrollbar-width: thin; scrollbar-color: rgba(110,168,255,.35) rgba(255,255,255,.06); }
*::-webkit-scrollbar{ height:10px; width:10px; }
*::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(110,168,255,.45), rgba(110,168,255,.25));
  border-radius: 6px; /* small, not pill */
  border:2px solid rgba(255,255,255,.06);
}
*::-webkit-scrollbar-track{ background: rgba(255,255,255,.04); }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  :root{ --nav-h: 56px; }             /* reduce fixed-nav height on mobile */
  .nav-inner{ min-height: var(--nav-h); }
  .menu{ gap:6px; }
  .menu a,
  .navbar .navbar-nav .nav-link{ height:36px; line-height:36px; padding:0 6px !important; }
}

/* ---------- Keyframes ---------- */
@keyframes rise-in{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes drift{
  0%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(-1%,1%,0) scale(1.01); opacity:.45; }
  100%{ transform: translate3d(0,0,0) scale(1); }
}

/* ============================================================
   Header image animation (safe + scoped)
   Works if the admin header is:
   A) a single &lt;img&gt; inside the header/hero/banner, or
   B) a background-image on that container.
   The navbar header is explicitly excluded.
   ============================================================ */

/* Case A — header/hero contains only an &lt;img&gt;: animate that image */
:where(
  header, .header, .page-header, .hero, .masthead, .banner,
  [role=&quot;banner&quot;], #header, #page-header, #masthead, #banner
):not(.navbar) &gt; img:only-child{
  display:block;
  width:100%;
  height:auto;
  backface-visibility:hidden;
  transform: translateZ(0);
  animation: cw-header-motion 12s var(--ease) infinite;
  filter: drop-shadow(0 8px 26px rgba(110,168,255,.22));
  will-change: transform, filter;
}

/* If the image is wrapped by a link, cover that too */
:where(
  header, .header, .page-header, .hero, .masthead, .banner,
  [role=&quot;banner&quot;], #header, #page-header, #masthead, #banner
):not(.navbar) &gt; a &gt; img:only-child{
  display:block;
  width:100%;
  height:auto;
  backface-visibility:hidden;
  transform: translateZ(0);
  animation: cw-header-motion 12s var(--ease) infinite;
  filter: drop-shadow(0 8px 26px rgba(110,168,255,.22));
  will-change: transform, filter;
}

/* Pause motion + give a subtle lift if user hovers/can click */
:where(
  header, .header, .page-header, .hero, .masthead, .banner,
  [role=&quot;banner&quot;], #header, #page-header, #masthead, #banner
):not(.navbar) &gt; img:only-child:hover,
:where(
  header, .header, .page-header, .hero, .masthead, .banner,
  [role=&quot;banner&quot;], #header, #page-header, #masthead, #banner
):not(.navbar) &gt; a:hover &gt; img:only-child{
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.01);
  filter: drop-shadow(0 12px 34px rgba(110,168,255,.30));
}

/* Case B — header/hero uses background-image: gently pan it */
:where(
  header, .header, .page-header, .hero, .masthead, .banner,
  [role=&quot;banner&quot;], #header, #page-header, #masthead, #banner
):not(.navbar){
  /* If there is a background image set by admin, this will animate it.
     If not, these properties are harmless no-ops. */
  background-repeat:no-repeat;
  background-size:cover;
  animation: cw-hero-pan 22s linear infinite;
}

/* Unique keyframes to avoid collisions elsewhere */
@keyframes cw-header-motion{
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(.5deg); }
}
@keyframes cw-hero-pan{
  0%, 100% { background-position: 50% 50%; }
  50%      { background-position: 50% 47%; }
}
