/* ===== Navbar Base Styles ===== */
.custom-navbar {
    padding: 0.5rem 1rem;
    width: 100%;
}


/* Ensure fluid container (stretches full width) */
.custom-navbar .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===== Light Mode ===== */
.light-mode .custom-navbar {
    background-color: #10335b !important;
}

.light-mode .custom-navbar .navbar-brand,
.light-mode .custom-navbar .nav-link,
.light-mode .custom-navbar a,
.light-mode .custom-navbar .btn {
    color: white !important;
}

/* ✅ Light mode fix for collapsed menu */
.light-mode .custom-navbar-collapse {
    background-color: #10335b !important;
}

.light-mode .custom-navbar-collapse .nav-link {
    color: white !important;
}

/* ===== Dark Mode ===== */
.dark-mode .custom-navbar {
    background-color: #333333 !important;
}

.dark-mode .custom-navbar .navbar-brand,
.dark-mode .custom-navbar .nav-link,
.dark-mode .custom-navbar a,
.dark-mode .custom-navbar .btn {
    color: white !important;
}

/* ===== NavLink Highlighting ===== */
.nav-link-diff-models {
    font-weight: bold;
    color: #0d6efd !important;  /* Bootstrap primary */
    margin-right: 50px; /* Add space between links */
}

.nav-link-diff-models:hover {
    text-decoration: underline;
}

/* ===== NavLink Highlighting ===== */
.nav-link-home-models{
    font-weight: bold;
    color: #0d6efd !important;  /* Bootstrap primary */
}

.nav-link-home-models:hover {
    text-decoration: underline;
}

.custom-toggle-btn {
  background-color: transparent; /* transparent background */
  border-color: grey; /* no border */
  border-width: 1px; /* thin border */
  line-height: normal; /* ensure text vertical alignment */
  vertical-align: middle;
  display: inline-flex;
  align-items: center; /* vertically centers the text inside the button */
  justify-content: center; /* horizontally centers the text */
  height: 40px; /* example fixed height */
}


/* ===== Logo Styling ===== */
.navbar-logo {
    margin-right: 20px;
}

/* ===== Text Styling ===== */
.navbar-title {
    font-family: sans-serif;
    font-size: 20px;
}

.navbar-link {
    font-family: sans-serif;
    font-size: 18px;
    text-decoration: none;
    font-color:grey;
}

/* ===== Optional Loader Placeholder ===== */
.loader-placeholder {
    background-color: transparent;
    width: 10px;
    height: 1px;
}
