html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.navbar-logo {
    height: 40px; /* Adjust this value as needed */
    margin-right: 10px;
}

/* --- Custom Navbar Styles (Final Version) --- */

/* This targets all links in the nav bar and uses !important to override
   Bootstrap's .text-dark class from the Identity pages. */
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-text a {
    color: rgba(255, 255, 255, 0.8) !important;
}

    /* This makes the links turn pure white when the mouse hovers over them. */
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-text a:hover {
        color: #ffffff !important;
    }

/* This ensures your main brand name in the top-left is also bright white. */
.navbar-dark .navbar-brand {
    color: #ffffff;
}