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;
}

/* Navigation Menu Enhancements */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 4px;
}

.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 4px;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px 2px 0 0;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5em;
}

.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}



/* Wizard improvements */
.wizard-nav {
    margin-bottom: 2rem;
}

.step {
    cursor: pointer;
}

.validation-summary-errors ul {
    padding-left: 0;
    list-style: none;
    color: #dc3545;
}

/* Form styling */
.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Map container */
#map {
    border: 1px solid #ddd;
    border-radius: 4px;
}

label.required::after {
    content: " *";
    color: red;
}