
    @import url("/css/dark.css?3244824415");
    :root {
    --theme-primary-rgb: 0,0,0;
    --theme-secondary-rgb: 0,0,0;

    --theme-bg-page-rgb: 0,0,0;
    --theme-bg-primary-rgb: 0,0,0;
    --theme-bg-secondary-rgb: 0,0,0;

        }

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

    .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.36rem;
    }

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


	/* === Global Reset &amp; Dark Grey Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a; /* Rich dark grey */
  color: #d8d8d8; /* Soft grey text */
  font-family: &#039;Segoe UI&#039;, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Smooth Fade-In for Sections === */
section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Smoky Blue Glow Animation === */
@keyframes smokyBluePulse {
  0% {
    box-shadow: 0 0 6px #3a6ea5, 0 0 12px #3a6ea5;
  }
  50% {
    box-shadow: 0 0 18px #5a8dcf, 0 0 36px #5a8dcf;
  }
  100% {
    box-shadow: 0 0 6px #3a6ea5, 0 0 12px #3a6ea5;
  }
}

/* === Navigation Bar === */
nav {
  background: linear-gradient(90deg, #1f1f1f, #1a1a1a);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #3a6ea5;
  animation: smokyBluePulse 3s ease-in-out infinite;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* === Logo === */
nav .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #5a8dcf;
  text-shadow: 0 0 8px #3a6ea5;
  letter-spacing: 1px;
}

/* === Nav Links with Fancy Underline === */
nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
  position: relative;
}

nav ul li a {
  color: #a8cfff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: &#039;&#039;;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #5a8dcf;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

nav ul li a:hover::after {
  width: 100%;
}

/* === Buttons with Glow === */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #2a2a2a;
  color: #a8cfff;
  border: 1px solid #3a6ea5;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #3a6ea5;
  color: #fff;
  box-shadow: 0 0 10px #5a8dcf, 0 0 20px #5a8dcf;
}

/* === Content Container === */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}
