@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Share+Tech+Mono&family=Exo+2:wght@300;400;600&display=swap');


/* GLOBAL RESET */
body {
    font-family: 'Exo 2', sans-serif !important;
    margin: 0;
    padding: 0;
    background-color: #0f111a;
    color: #ffffff;
    overflow-x: hidden;
}

/* BACKGROUND GRADIENT WITH DEPTH */
body.layout-dark:before,
.layout-dark {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f1a, #1a1a2e, #16213e);
    z-index: -1;
    overflow: hidden;
}

/* HEADER - FROSTED GLASS + NEON LINE */
body.layout-dark .header-container {
    background: rgba(10, 15, 25, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #ff0057;
    box-shadow: 0 4px 12px rgba(255, 0, 87, 0.4);
}

/* SIDEBAR - SLICK NEON PANEL */
.sidebar-theme {
    background: rgba(15, 20, 30, 0.95);
    border-right: 2px solid #00f0ff;
    backdrop-filter: blur(12px);
    overflow-y: auto;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 280px;
    z-index: 10;
    transition: transform 0.4s ease;
    box-shadow: 4px 0 12px rgba(0, 240, 255, 0.3);
}

/* BRAND AREA */
.theme-brand {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #00f0ff;
    text-align: center;
    padding: 20px 0;
}

/* CARD DESIGN - NEON GLOW */
.card {
    background: rgba(15, 20, 30, 0.7);
    border: 2px solid #ff0057;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 0, 87, 0.3);
    transition: all 0.3s ease-in-out;
    margin: 30px;
}

.card:hover {
    box-shadow: 0 0 30px rgba(255, 0, 87, 0.6);
    transform: scale(1.02);
}

/* MENU & SUBMENU ACTIVE STYLES */
#sidebar ul.menu-categories li.menu>.dropdown-toggle[aria-expanded=true],
body.layout-dark #sidebar ul.menu-categories li.menu.active>.dropdown-toggle {
    background: #ff0057 !important;
    color: #0f0f1a !important;
    box-shadow: 0 0 14px #ff0057;
}

body.layout-dark #sidebar ul.menu-categories li.menu ul.submenu>li.active a {
    color: #00f0ff !important;
    font-weight: bold;
}

/* GENERAL TEXT */
body,
.header-container,
.card-header {
    color: #ffffff !important;
}

a {
    color: #00f0ff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff0057 !important;
}

/* BUTTONS - GAMING STYLE */
button,
.btn {
    background: linear-gradient(90deg, #ff0057, #dd014a);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

button:hover,
.btn:hover {
    background: linear-gradient(90deg, #00f0ff, #00bcd4);
    box-shadow: 0 0 12px #00f0ff;
    cursor: pointer;
}

/* LOGO ANIMATED - GAMING VIBES */
.logo-animated {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff0057, #00f0ff, #d500f9);
    background-size: 300% auto;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    filter: drop-shadow(0 0 10px #00f0ff);
    animation: shineText 4s ease-in-out infinite, moveLogo 3s ease-in-out infinite;
    text-align: center;
}

/* ANIMATIONS */
@keyframes shineText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes moveLogo {
    0% { transform: translateX(0); }
    50% { transform: translateX(30px); }
    100% { transform: translateX(0); }
}

/* SCROLL FIXES */
html,
body {
    height: 100%;
    overflow-x: hidden;
}

.main-content {
    margin-left: 280px;
    overflow-y: auto;
    height: 100vh;
    padding: 30px;
    box-sizing: border-box;
}

/* SCROLLBAR */
.sidebar-theme::-webkit-scrollbar {
    width: 8px;
}

.sidebar-theme::-webkit-scrollbar-thumb {
    background-color: #00f0ff;
    border-radius: 4px;
}

.sidebar-theme::-webkit-scrollbar-track {
    background: #101020;
}

body.layout-dark .table thead tr th {
  background: rgba(20, 5, 15, 0.85); /* Darker reddish glass */
  backdrop-filter: blur(8px);
  border: 1px solid #ff0057; /* Neon pink/red */
  color: #ff0057; /* Text color matches neon border */
  font-family: 'Share Tech Mono', monospace;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 20px;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(255, 0, 87, 0.5); /* Stronger red glow */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.layout-dark .table thead tr th:hover {
  background: rgba(255, 0, 87, 0.15);
  box-shadow: 0 0 25px rgba(255, 0, 87, 0.9);
  cursor: pointer;
}


.bg-light {
  background: #101020;
}