/* Navbar Styling */
.navbar, .navbar-custom {
  background-color: #1f4ac2 !important;

}
.text-shadow {
  text-shadow: 2px 2px 5px hwb(0 98% 2% / 0.911);
}
.navbar-dark .navbar-nav .nav-link,
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: #fbfbfc !important;  /* Ensures white text */
}

.navbar-custom .navbar-toggler-icon {
  background-color: #0a0909;  /* Ensures toggle icon is visible */
}

/* Card Styling */
.card-title {
  font-size: 24px;
}

.card {
  margin-bottom: 15px;
}

/* List Group Styling */
.list-group-item {
  font-size: 18px;
}

/* Scrollable Content */
.scrollspy-content {
  max-height: 70vh;
  overflow-y: auto;
  padding: 15px;
}

/* Fixed Titles */
.fixed-titles {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .col-md-8, .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .card {
    margin: 10px 0;
  }
}

/* Logo Styling */
.logo {
  max-width: 150px;
  max-height: 150px;
}
