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;
}

/* ENHANCED: Improved navigation styling */
.navbar-nav .nav-item {
  position: relative;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(13, 110, 253, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link:active {
  transform: translateY(0);
}

/* ENHANCED: Add active state indicator */
.navbar-nav .nav-item .nav-link.active {
  background-color: rgba(13, 110, 253, 0.15);
  font-weight: 500;
}

/* ENHANCED: Better footer styling */
.footer {
  padding: 1.5rem 0;
  background-color: #f8f9fa;
}

/* ENHANCED: Global button styles */
.btn {
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* ENHANCED: Badge styling */
.badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}