html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.footer {
  background-color: #f8f9fa;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.05);
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

@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: 100dvh;
}

/* body {
  margin-bottom: 100vh;
} */
/* Active Link (Remains Blue) */
.nav-link.active {
  background-color:black !important; /* Bootstrap Blue */
  color: black !important;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect (Turns Blue on Hover) */
.nav-link:hover {
  background-color: rgba(13, 110, 253, 0.1); /* Light Blue Background */
  color: blue !important; /* Bootstrap Blue Text */
}
.nav-link {
  color: #000 !important; /* Black by Default */
  transition: all 0.3s ease-in-out;
}


