:root {
    --primary-green: #028e65;
    --soft-green: rgba(2, 142, 101, 0.08);
    --border-color: rgba(0, 0, 0, 0.08);
    --bg-light: #f8faf9;
    --text-dark: #1a202c;
    --text-muted: #718096;
}

/* Global Header & Navigation Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    color: #4a5568 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 50px;
    /* Oval shape */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 2px;
}

/* Remove default Bootstrap underline or shadow if any */
.navbar-nav .nav-link:after {
    display: none !important;
}

/* Hover Effect: Soft Green Background */
.navbar-nav .nav-link:hover {
    background-color: rgba(2, 142, 101, 0.05);
    color: #028e65 !important;
}

/* Active State: Premium Green Pill Background */
.navbar-nav .nav-link.active {
    background-color: #028e65 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(2, 142, 101, 0.2);
}

.navbar-nav .nav-link.active i {
    color: #ffffff !important;
    opacity: 1 !important;
}

.text-primary-custom {
    color: #028e65 !important;
}

.btn-primary-custom {
    background-color: #028e65 !important;
    border-color: #028e65 !important;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #026b4d !important;
    border-color: #026b4d !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 142, 101, 0.2);
}

/* Dropdown Customization (No more blue) */
.dropdown-menu {
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s;
}

.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
    background-color: var(--soft-green) !important;
    color: var(--primary-green) !important;
}

.dropdown-item.text-danger:hover {
    background-color: #fff5f5 !important;
    color: #c53030 !important;
}

.dropdown-item i {
    color: var(--text-muted);
}

.dropdown-item.text-danger:hover i {
    color: #c53030 !important;
}

.dropdown-item:hover i {
    color: var(--primary-green);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
    }

    .navbar-nav .nav-link.active {
        box-shadow: none;
    }
}