@font-face {
  font-family: "Akira";
  src: url("../fonts/akira/Akira.otf") format("opentype");
}

/* Charley Font */
@font-face {
  font-family: "Charley";
  src: url("../fonts/charley/Charley.otf") format("opentype");
}

/* Moonget Font */
@font-face {
  font-family: "Moonget";
  src: url("../fonts/moonget/Moonget.otf") format("opentype");
}

/* Gemas Font */
@font-face {
  font-family: "Gemas";
  src: url("../fonts/gemas/Gemas.otf") format("opentype");
}
body {
  background-color:black;
  font-family: "Helvetica";
  font-size: 14px;
  font-weight:400;
  width: 100vw;
  overflow-x: hidden;
  display: block;
}
.charley {
    font-family: "Charley"!important;
}
.moonget {
    font-family: "Moonget"!important;
}
.gemas {
    font-family: "Gemas"!important;
}
.akira {
    font-family: "Akira"!important;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 1); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998; /* Ensure loading spinner is on top */
}

.loading-spinner {
  border: 5px solid #3f3f3f; /* Light gray border */
  border-top: 5px solid #f3f3f3; /* Blue border on top */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite; /* Rotate animation */
  z-index: 9999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Akira", sans-serif;
}
p {
    font-family: "Helvetica";
}
.btn {
    border-radius:100px;
}
.wrap {
  margin: 0 auto;
  text-align: center;
} 
.login {
  width: 300px;
  margin: 0 auto;
}
.login input[type=text],
.login input[type=password] {
  opacity: 1;
  display: block;
  border: none;
  outline: none;
  width: 280px;
  padding: 10px;
  margin: 20px 0 0 0;
  border-radius: 100px;
  background:transparent;
  border:solid 2px #ced4da;
  color:#fff;
  width:100%;
}
.login-btn-group {
    width:fit-content;
    margin:0 auto;
}
.wrap {
  animation: bounce 1s;
  -webkit-appearance: none;
}
.login input[type=text]:focus:valid, .login input[type=password]:focus:valid  {
  box-shadow: 0 0 0 2px #fff;
}
.login input[type=text]:focus:valid ~ input[type=button] {
  /* background: #27ae60; */
  color: #2ecc71;
}
.login input[type=text]:focus:valid ~ input[type=submit] {
  color: #2ecc71;
}
.login input[type=text]:invalid {
  box-shadow: 0 0 0 2px #e74c3c;
}
.login input[type=text]:invalid ~ input[type=button] {
  background: #c0392b;
  color: #e74c3c;
}
.login input[type=text]:invalid ~ input[type=submit] {
  color: #e74c3c;
}
.login input[type=password] {
  animation: bounce1 1.3s;
}
.login input[type=submit],
.login input[type=button] {
  border: 0;
  outline: 0;
  padding: 13px 18px;
  margin: 2.5rem 0 0 0;
  border-radius: 2px;
  font-weight: 600;
  animation: bounce2 1.6s;
} 
.login input[type=submit] {
    background: transparent;
    color: #fff;
    border:solid 1px #ced4da;
    border-radius:100px;
}
.login input[type=button] {
  background: transparent;
  color: #fff;
  border:solid 1px #ced4da;
  border-radius:100px;
}
.errors {
  visibility:hidden;
}
@keyframes bounce {
  0% { transform: translateY(-250px); opacity: 0; }
} 
@keyframes bounce1 {
  0% {  opacity: 0; }
  40% { transform: translateY(-100px); opacity: 0;}
}
@keyframes bounce2 {
  0% {  opacity: 0; }
  70% { transform: translateY(-20px); opacity: 0;}
}
body, html {
  min-height: 100vh; /* Ensure full height for the body */
  margin: 0; /* Remove default margin */
  background: #000; /* Background color */
}

.sidebar {
  height: 100vh; /* Full height for the sidebar */
  background-color: #343a40; /* Sidebar background color */
}

.sidebar .nav-link, .navbar .nav-link {
  color: white; /* Navbar text color */
}
.sidebar .nav-danger, .navbar .nav-danger {
  color: red; /* Navbar text color */
}
.sidebar .nav-link.active, .navbar .nav-link.active {
  background-color: #495057; /* Active link color */
}

.content {
  overflow-y: auto; /* Make content scrollable */
  padding-left: 15px; /* Space between content and sidebar */
}
.navbar {
  background-color: #343a40;
}
/* Mobile Navbar */
.navbar-nav, .nav {
  display: flex; /* Use flexbox for layout */
  flex-wrap: nowrap!important; /* Prevent items from wrapping to the next line */
  overflow-x: auto; /* Allow horizontal scrolling */
  overflow-y: hidden; /* Hide vertical overflow */
  white-space: nowrap; /* Prevent line breaks */
  padding: 0; /* Remove default padding */
}

.navbar-nav .nav-item {
  flex: 0 0 auto; /* Prevent nav items from growing or shrinking */
}
/* Hide scrollbar track and thumb */
.nav::-webkit-scrollbar, .panel-row::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
}

.nav, .panel-row {
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.nav:hover::-webkit-scrollbar, .nav:hover::-webkit-scrollbar {
  display: block; /* Show scrollbar when hovered */
}

/* Optional: if you want to show scrollbar when the user scrolls */
.nav::-webkit-scrollbar, .panel-row::-webkit-scrollbar {
  width: 0; /* Make scrollbar width 0 by default */
  height: 0; /* Make scrollbar height 0 by default */
}

.nav:focus::-webkit-scrollbar,
.nav:hover::-webkit-scrollbar,
.panel-row:focus::-webkit-scrollbar,
.panel-row:hover::-webkit-scrollbar {
  width: 8px; /* Set scrollbar width when focused or hovered */
}

.nav::-webkit-scrollbar-thumb,
.panel-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7); /* Color of the scrollbar thumb */
  border-radius: 4px; /* Round scrollbar thumb */
}
a {
  text-decoration: none; /* Remove underline */
  color: inherit;        /* Inherit the color from parent, or set your own color */
}

/* Reset the h5 styles */
a h5 {
  margin: 0;         /* Remove any default margin */
  padding: 0;        /* Remove any default padding */
  color: inherit;    /* Inherit color from the link, or set your own */
}

/* Optional: Add hover effects if desired */
a:hover h5 {
  text-decoration: underline; /* Or any other styling you want */
}
/* Navbar styling */
.navbar {
  background-color: #343a40; /* Ensure consistent background color */
  position: sticky; /* Stick the navbar to the top */
  top: 0; /* Stick to the top of the page */
  z-index: 1000; /* Ensure it appears above other content */
}

/* Optional: Add some margin to the nav items for spacing */
.navbar-nav .nav-link {
  margin: 0 10px; /* Space between nav items */
}
.panel-row {
  flex-wrap:nowrap;
  flex-direction:row;
  overflow:scroll;
}