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;
}
/* Custom navbar styling */
.custom-navbar {
    background-color: #003366 !important; /* Navy Blue */
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

    .custom-navbar .navbar-brand,
    .custom-navbar .navbar-nav .nav-link {
        color: #fff !important; /* White text */
        font-weight: 600;
        font-family: 'Segoe UI', 'Arial', sans-serif;
        letter-spacing: 0.5px;
    }

        .custom-navbar .navbar-brand img {
            filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.10));
        }

    .custom-navbar .navbar-brand {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
    }

    /* Optional: Change link hover color */
    .custom-navbar .navbar-nav .nav-link:hover {
        color: #00b8b8 !important; /* Teal on hover */
        text-decoration: underline;
    }
body {
    background-color: #f8f9fa; /* or your chosen color */
}