.nav-link i { 
    font-size: 18px;
    margin-right: 4%;
    margin-left: 2%;
}
.main-header {
    position: fixed;
    width: 100%;
    height: 7vh;
    background: transparent;
    /* box-shadow: var(--default-boxshadow); */
    z-index: 10;
}
.main-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    width: 80vw;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 50px;
    box-shadow: 0px 0px 5px 0px rgb(133, 133, 133);
}
.navbar-nav { 
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}
.navbar-nav.menudetails { 
    width: 75%;
}
.navbar-nav.profiledetails { 
    width: 25%;
}
.nav-item {
    margin-right: 0.75rem;
}
.navbar-nav a { 
    cursor: pointer;
    font-size: 1rem;
    color: rgb(237, 237, 237) !important; 
}
.navbar-nav a:hover { 
    font-weight: bold; 
    color: white !important;
}
.navbar-nav .logo-link {
    font-size: 1.2rem;
    color: gold !important;
}
@media (max-width: 768px) {
    .mobile-responsive {
        display: block;
    }
}
.mobile-responsive {
    display: none;
}
.nav-links {
    cursor: pointer;
}
.profiledetails {
    display: flex;
    align-items: center;
    justify-content: end;
}
.sidemenuimg img {
    width: 17px;
}
.dropdown-menu {
    box-shadow: var(--default-boxshadow);
    background: black;
    padding: 0.5rem 0;
    overflow: hidden;
}
.dropdown-menu .dropdown-item {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: rgb(237, 237, 237);
}
.dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: white;
}
.dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
} 

/* ===== GLOBAL SCROLLBAR STYLE ===== */
/* Width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* Track (background) */
::-webkit-scrollbar-track {
    background: #111;   /* dark background */
}
/* Scroll thumb */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #777, #b7b7b7);
    border-radius: 10px;
    transition: 0.3s ease;
}
/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #666, #aaa);
}

/* Firefox scrollbar */
/* * {
    scrollbar-width: thin;
    scrollbar-color: #666 #111;
} */