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 STYLES
   ============================================================================= */

.navbar .nav-link,
.navbar .dropdown-item {
  color: #333;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #007bff;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Active page highlighting */
.navbar .nav-link.active,
.navbar .nav-item.active > .nav-link {
  color: #007bff;
  font-weight: 600;
  position: relative;
}

.navbar .nav-link.active::after,
.navbar .nav-item.active > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background-color: #007bff;
  border-radius: 2px;
}

.navbar .dropdown-item.active {
  color: #007bff;
  background-color: #e7f1ff;
  font-weight: 500;
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.navbar .dropdown-divider {
  margin: 0.25rem 0;
}
