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: 0; /* Remove bottom margin that was creating space for absolute footer */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure body takes full viewport height */
}

/* Ensure main content area grows to push footer to bottom */
.container.container-main {
  flex: 1;
}

/* Responsive navbar adjustments */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-item {
    margin-bottom: 0.25rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0.5rem; /* Add some space between nav items on larger screens */
  }
}