
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --header-height: 4.5rem;
    --nav-width: 68px;
    --first-color: #292929;
    --first-color-light: #F2DACA    ;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--first-color-light);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

@media screen and (min-width: 767px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }

    .header {
        height: 4.5rem;
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem);

    }
    



    

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

    .l-navbar.show {
        width: calc(var(--nav-width) + 156px);
    }
    

    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }
    
}
@media screen and (max-width: 767px) {
    .l-navbar {
        width: 0;
        overflow: hidden;
    }

    .l-navbar.show {
        width: 75%;
    }



    

    .header_logo img {
        position: absolute;
        left: 50%;
        transform: translateX(-70%) translateY(-50%);
        height: 40px; /* Adjust the height as needed */
    }
    /* Add these styles to your existing CSS */

    .close-icon {
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff; /* Adjust the color as needed */
    }

    .close-icon:hover {
        color: #ccc; /* Adjust the hover color as needed */
    }
    
}






.profile-picture-container {
    position: relative;
    }

    .profile-picture-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 15px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}



.header_content {
    display: flex;
    align-items: center;
}

.header_text p {
    margin: 0;
    font-size: 14px;
}

.header_logo img {
    height: 40px;
    margin: 0 10px; /* Adjust margin as needed */
}

.header_user_dropdown {
    margin-left: auto; /* Push the user dropdown to the right */
}

.dropdown {
    /* Your existing dropdown styles */
}
.text-right {
    text-align: right;
}






.header {
    display: flex;
    align-items: left;
    justify-content: space-between;
    /* Other styles */
}

.header_toggle {
    /* Style for the toggle icon */
}


.icon-container {
    position: relative;
    display: inline-block;
}

.pending_count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 10px;
}