.hide {
    display: none;
    width: 32px;
    height: 40px;
}

.header-container {
    box-sizing: border-box;
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 110px;
    padding-right: 20px;
    font-weight: 400;
    font-size: 20px;
    background-color: white;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 3;
}


.help-icon:hover {
    width: 38px;
    height: 38px;
    cursor: pointer;
}


.help-container {
    display: flex;
    align-items: center;
    gap: 20px;
}


.user-initials-container {
    width: 50px;
    height: 50px;
    border: 3px solid #2C2C2C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #29ABE2;
    font-size: 20px;
    font-weight: 700;
}


.user-initials-container:hover {
    background-color: #E2E6EC;
    cursor: pointer;
}

.log-out-container {
    color: white;
    position: absolute;
    top: 100%;
    right: 2%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #2A3647;
    padding: 16px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    z-index: 1;
}

.d-none {
    display: none;
}

@media (max-width: 1024px) {
    .header-container {
        height: 10%;
        padding-left: 20px;
        width: 100vw;
    }

    .help-container {
        padding-right: unset;
    }

    .kanban-header {
        display: none;
    }

    .show {
        display: unset;
    }
}

@media (max-width: 550px) {

    .user-initials-container {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}