
    @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;
        }
    


	/* ============================================================
   Smokey Blue Navbar Glow — Classic &amp; Ember-Compatible
   ============================================================ */

/* Page background and base style */
body {
  background-color: #121416; /* deep charcoal */
  color: #e6e9ee;
  font-family: &quot;Segoe UI&quot;, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 60px; /* space for navbar */
}

/* Navbar base */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #171a1d; /* dark background */
  border-bottom: 1px solid #2a2f36;
  z-index: 1000;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.4),       /* dark shadow for depth */
    0 6px 20px rgba(110,168,255,0.35); /* soft smokey blue underglow */
}

/* Optional slight glassy look for newer browsers (safe fallback) */
.navbar {
  background-color: rgba(23,26,29,0.95);
  /* This blur only applies if supported — harmless if ignored */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* Navbar inner layout */
.navbar .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Navbar links */
.navbar a {
  color: #cfd6df;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  transition: all 0.25s ease-in-out;
}

.navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(110,168,255,0.5);
}

/* Button styling (polished, but safe) */
.btn-primary {
  background-color: #1b1f23;
  border: 1px solid #6ea8ff;
  color: #e6e9ee;
  padding: 8px 14px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(110,168,255,0.25);
  transition: all 0.25s ease-in-out;
}

.btn-primary:hover {
  background-color: #23282d;
  box-shadow: 0 0 14px rgba(110,168,255,0.45);
  transform: translateY(-1px);
}

/* Smokey glow under the navbar (pure CSS, no unsupported filters) */
.navbar::before {
  content: &quot;&quot;;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(110,168,255,0.35) 0%, transparent 70%);
  opacity: 0.7;
  z-index: -1;
}

/* Slight shimmer animation for modern browsers (ignored safely by older ones) */
@keyframes navbarGlowPulse {
  0%   { opacity: 0.55; }
  50%  { opacity: 0.75; }
  100% { opacity: 0.55; }
}

.navbar::before {
  animation: navbarGlowPulse 8s ease-in-out infinite;
}

/* Footer subtle touch-up to match navbar style */
footer {
  background-color: #14171a;
  color: #9aa3af;
  border-top: 1px solid #2a2f36;
  text-align: center;
  padding: 20px 0;
  box-shadow: 0 -6px 18px rgba(110,168,255,0.15);
}
