body {
    background-color: rgb(126, 190, 36); /* Your existing green background */
    font-family: 'Roboto', sans-serif; /* Apply Roboto globally */
}

/* --- TYPOGRAPHY & BRANDING --- */
.navbar-brand {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

/* --- NAVBAR STYLING --- */
.navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Makes the text pop */
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    padding-bottom: 0.25rem;
    transition: all 0.2s ease;
}

/* Bulletproof Active State indicator */
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
    color: #0d6efd !important; /* Force Bootstrap primary blue */
    border-bottom: 2px solid #0d6efd;
}

/* Dropdown active item highlight */
.dropdown-item.active, .dropdown-item:active {
    background-color: #0d6efd;
    color: white !important;
    font-weight: bold;
}

/* --- EXISTING FORM STYLES --- */
.form-control, .form-select {
    border: 1px solid #7a8794;
    background-color: #f8f9fa;
    color: #212529;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    color: #1a1e21;
}