/* Make space for fixed navbar */
body {
  padding-top: 50px; /* Height of the navbar */
  margin: 0;
}

/* Main Navbar */
.navbar,
.custom-navbar {
  background: #4b2fb0; /* Solid visible background color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  min-height: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); /* Subtle shadow */
  transition: background 0.3s ease;
}

/* Brand */
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #fff !important;
}

/* Nav Links */
.navbar .nav-link {
  color: #fff !important;
  transition: color 0.2s ease-in-out;
}

.navbar .nav-link:hover {
  color: #ffd700 !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Buttons */
.navbar .btn-warning {
  color: #000;
  background-color: #ffd700;
  border: none;
  transition: background-color 0.2s ease;
}

.navbar .btn-warning:hover {
  background-color: #ffcc00;
}


.custom-navbar { background: rgba(0,0,0,0.55); backdrop-filter: blur(10px); }

