@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Schoolbell&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Schoolbell&display=swap');


body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    font-family: 'Inter';
    box-sizing: border-box;
    /* overflow-y: hidden; */
}

.d-none {
    display: none;
}

.header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    padding: 15px 35px;
    height: 80px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10000000000;
}


.help_profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100px;
    height: 50px;
    cursor: pointer;
}

.profile {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    object-fit: cover;
}


#header_logo {
    width: 40px;
    position: absolute;
    top: 15px;
    left: 30px;
}

nav {
    position: absolute;
    top: 80px;
    right: 35px;
    background: #2A3647;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 20px 0 20px 20px;
}

nav a {
    color: #CDCDCD;
    text-decoration: none;
    padding: 8px;
}

.left-menu {
    position: fixed;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;
    padding-top: 60px;
    width: 240px;
    /* min-height: 100vh; */
    height: 100%;
    left: 0px;
    top: 0px;
    bottom: 0px;
    background: #2A3647;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    z-index: 100000000000000;
}

.left-menu a {
    text-decoration: none;
    color: #fff;
}

#menu-list {
    width: 100%;
    color: #CDCDCD;
}

.menu_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 50px;
    gap: 20px;
    /*width: 100%; */
    height: 50px;
    cursor: pointer;
}

.menu_name:hover {
    background-color: #091931;
}


.info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 20px;
    color: #CDCDCD;
    cursor: pointer;
    width: 100%;
}

.info-container:hover {
    background-color: #091931;
}

.bluoption{
    background-color: #091931;
}

.help_profile {
    position: relative;
}

#profile-popup {
    position: absolute;
    right: 0;
    bottom: -3.4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-color: #2A3647;
    color: #fff;
    text-decoration: none;
}



@media (max-width: 900px) {
    .kanban-heading {
        display: none;
    }
}

@media (max-width: 620px) {
    .left-menu {
        padding: 66px 0;
        width: 180px;
        background: #2A3647;
    }

    .menu_name {
        padding-left: 30px;
}


@media (max-width: 480px) {

    #menu_logo {
        display: none;
    }

    .help_icon {
        display: none;
      }

      .help_profile {
        width: 50px;
      }

    #header-logo {
        display: block;
    }

    .left-menu {
        justify-content: center;
        position: fixed;
        width: 100%;
        height: 100px;
        left: 0px;
        bottom: 0px;
        gap: 10px;
        top: unset;
        padding: unset;
    }

    .left-menu a {
        text-decoration: none;
        color: #fff;
        width: 80px;
        gap: 10px;
    }

    #menu-list {
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    .menu_name {
        padding: unset;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        height: 100%;

    }

    .info-container {
        display: none
    }
}
}



@media (max-height: 512px) {
    .left-menu {
        overflow: scroll;
    }
    }