    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul{
    margin: 30px;
}

.main-header {
    background: white;
    height: 80px;
    border-bottom: 1px solid #eee;
}

.main-navbar {
    width: 85%;
    margin: auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #95a845;
    font-size: 40px;
    font-family: cursive;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

    .menu a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        transition: 0.3s;
    }

        .menu a:hover {
            color: #95a845;
        }


    .header-icons a {
        text-decoration: none;
        color: black;
        font-size: 20px;
    }
.active-menu {
    color: #84A93D !important;
    font-weight: bold;
    position: relative;
}


    .active-menu::after {
        content: "";
        width: 100%;
        height: 2px;
        background: #84A93D;
        position: absolute;
        left: 0;
        bottom: -8px;
    }

.main-header {
    position: relative;
    z-index: 9999;
}

.account-dropdown {
    position: relative;
}

.account-icon {
    cursor: pointer;
}

.dropdown-menu-custom {
    position: absolute;
    top: 35px;
    right: 0;
    width: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    padding: 15px;
    display: none;
    z-index: 99999;
}

    .dropdown-menu-custom a {
        display: block;
        text-decoration: none;
        text-align: center;
        padding: 12px;
        margin-bottom: 10px;
        border-radius: 25px;
        transition: .3s;
    }

        .dropdown-menu-custom a:first-child {
            background: #95a845;
            color: white;
        }

        .dropdown-menu-custom a:last-child {
            background: #f4f4f4;
            color: #666;
        }

        .dropdown-menu-custom a:hover {
            transform: translateY(-2px);
        }


.notification-item:hover {
    background: #f8f9fa;
}

.notification-dropdown .dropdown-menu {
    width: 380px;
    max-height: 500px;
    overflow-y: auto;
    right: 0;
    left: auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 99999;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #dc3545;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid white;
}

.notification-unread {
    background: #eef7ff;
}

    .notification-unread:hover {
        background: #dbefff;
    }

.account-icon {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .account-icon:hover {
        color: #95a845;
    }