.chat-header-left-section {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-icon-container {
    margin-right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-top: 4px;
}

.menu-icon {
    width: 30px;
    height: auto;
    fill: rgb(122, 122, 122);
}

@media (min-width: 700px) {
    .menu-icon-container {
        display: none;
    }
}


.select-version-button {
    display: flex;
    
    padding: 7px 8px 7px 12px;
    border-radius: 8px;
    cursor: pointer;

    transition: background-color 0.15s;
}

.select-version-button:hover {
    background-color: rgb(235, 234, 234);
}

.version-label {
    font-size: 17px;
    font-weight: 350;

    margin-right: 2px;
}

.chat-arrow-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;

}

.arrow-icon {
    fill: rgb(102, 102, 102);
}


.select-version-card {
    position: absolute;
    z-index: 2200;
    top: 40px;
    left: 10px;

    background-color: white;
    display: none;
    flex-direction: column;
    padding: 6px;

    width: 300px;

    border-radius: 16px;
    border: 1px solid rgb(214, 214, 214);
}

.version-button {
    display: flex;
    align-items: center;

    padding: 10px 8px;
    border-radius: 10px;
    cursor: pointer;
}

.version-button:hover {
    background-color: rgb(246, 246, 246);
}

.version-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 8px;
}

.version-name {
    font-size: 14px;
    font-weight: 350;
    margin-bottom: 4px;
}

.version-description {
    font-size: 10px;
    font-weight: 350;
    color: gray;
}

.version-upgrade-button {
    padding: 6px 12px;
    margin-left: auto;
    font-size: 12px;
}

.tick-icon-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* middle section header */

.chat-header-middle-section {
    height: 100%;
    margin-left: auto;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.free-offer-button {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;

    flex-shrink: 0;

    border: none;
    background-color: rgb(230, 230, 248);
    padding: 2px 13px;
    border-radius: 20px;

    cursor: pointer;

    color: rgb(93, 91, 208);
}

.free-offer-button:hover {
    background-color: rgb(222, 222, 245);
}

.gift-icon-container {
    margin-right: 4px;
    display: flex;
    align-items: center;
    padding-bottom: 2px;
}

.gift-icon {
    height: 17px;
}

.button-label {
    font-size: 14px;
    font-weight: 350;
    flex-shrink: 0;
}




.chat-header-right-section {
    margin-left: auto;
    height: 100%;
    flex-shrink: 0;

    display: flex;
    align-items: center;
}

.chat-header-button {
    height: 100%;
    display: flex;
    align-items: center;

    border: none;
    background-color: white;
    cursor: pointer;
    
    border-radius: 8px;

    font-size: 14px;
    font-weight: bold;

    padding: 4px 12px;
}

.chat-header-button:hover {
    background-color: rgb(235, 234, 234);
}

.button-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 6px;
}

.action-button-label {
    font-weight: 500;
}

.more-chat-actions-button {
    padding: 0px 8px;
}

.chat-more-icon-container {
    margin-right: 0px;
}


.more-chat-actions-card {
    display: none;
    align-items: center;
    width: auto;
    padding: 6px;
}

.header-tool-tip {
    display: flex;
}







@media (max-width : 1100px) {
    .chat-header-middle-section {
        margin-left: 4px;
    }
}