.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    z-index: 10;
    height: 100px;
    position: fixed;
    background: #F6F9FF;
}
.lightStyle .header{
    background: white;
    z-index: 999999;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
}

.full-logo-holder {
    display: flex;
    max-height: 75px;
    justify-content: flex-start;
}

.full-logo-img {
    width: auto;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
}

.header a {
    cursor: pointer;
    color: inherit;
}

.header a:visited,
.header a:hover,
.header a:active {
    color: inherit;
}

.header-btn {
    position: relative;
    text-decoration: none;
    font-size: 100% !important;
    transition-duration: 0.3s;
    margin-left: 38px;
    font-weight: 600;
    color: white;
}

.header-btn:hover {
    opacity: 0.7;
}

.order-notification {
    top: -4px;
    right: -14px;
}

.join-btn {
    background: var(--gradientText);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.dashboard-btn:hover {
    opacity: 1 !important;
}

.dashboard-img {
    width: 40px;
    height: 40px;
    padding: 3px;
     object-fit: cover;
}
.dashboard-user-img{
    padding: 3px;
    color: var(--blackText);
}
.dashboard-img.user_current_img{
    border-radius: 50%;
    border: 1px solid var(--pinkColor);

}
.dashboard-menu-holder {
    display: flex;
    align-items: center;
    background: white;
    color: var(--primaryColor);
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.dashboard-menu-btn {
    transform: rotateZ(90deg);
    margin-right: 12px;
    font-weight: 600;
    color: var(--blackText);
    font-size: 20px;
}

.dashboard-menu {
    display: none;
    border-radius: 8px;
    box-shadow: none;
    background-color: white;
    top: 43px;
    left: -50px;
    z-index: 2;
    width: calc(100% + 50px);
    position: absolute;
    border: 2px solid var(--primaryColor);
    transition: 1s;
}

.dashboard-menu-item {
    padding: 14px;
    transition-duration: 0.3s;
    font-weight: 600;
    font-size: 15px;
    z-index: 3;
    color: var(--primaryColor);
    border-bottom: 1px solid;
}

.dashboard-menu-item:hover {
    opacity: 0.7;
}


/* Show the dropdown menu on hover */

.header-btn.dashboard-btn:hover .dashboard-menu , .dashboard-menu:hover{
    display: block;
}

.mobile-menu-btn {
    display: none;
    font-size: 100%;
    margin: 8px;
    font-weight: 600;
}

@media only screen and (max-width: 1000px) {
    .mobile-menu-btn {
        display: block;
        font-size: 1.2em;
    }
    .header-btn {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .header {
        min-height: 85px;
        height: 85px;
    }
    .full-logo-img {
        width: auto;
        max-height: 70px;
    }
    .dashboard-img {
        width: 32px;
        height: 32px;
    }
    .dashboard-user-img{
         width: 32px;
        height: 32px;
    }
}

p.header_user_name {
    margin: 0;
    border: 2px solid var(--primaryColor);
    border-radius: 10px;
    padding: 10px 10px;
    transition: 1s;
    display: flex;
    align-items: center;
    align-content: center;
    column-gap: 10px;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-btn.dashboard-btn:hover .header_user_name {
    color: white;
    background: var(--primaryColor);
    border-radius: 50px;
}

img.profile_image_header {
    width: 25px;
    object-fit: contain;
    border-radius: 50%;
}

p.header_user_name.mobile_view {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

p.header_user_name.mobile_view span.dashboard-user-img {
    width: auto;
    height: auto;
}