.chatbot-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
    z-index: 10000;
    gap: 8px;
}

.chatbot-button-container img {
    max-width: 40px;
    border-radius: 40px;
    cursor: pointer;
}

.chatbot-button-container button {
    background-color: #00198C;
    color: #FFF;
    padding: 8px;
    gap: 10px;
    border-radius: 4px;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    font-size: small;
}

@media screen and (min-width: 576px) {
    .chatbot-button-container {
        display: block;
        position: fixed;
        left: auto;
        bottom: 32px;
        right: 32px;
        width: 220px;
        z-index: 10000;
    }
    
    .chatbot-button-container img {
        position:relative;
        max-width: 100%;
        border-radius: 40px;
        left: 67.5px;
        top: 8px;
        cursor: pointer;
    }

    .chatbot-button-container button {
        position:relative;
        background-color: #00198C;
        color: #FFF;
        padding: 10px;
        gap: 10px;
        border-radius: 4px;
        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 500;
        cursor: pointer;
        font-size: medium;
    }
}

@media screen and (min-width: 768px) {
    .chatbot-button-container {
        display: block;
        position: fixed;
        left: auto;
        bottom: 32px;
        right: 32px;
        width: 220px;
        z-index: 10000;
    }
    
    .chatbot-button-container img {
        position:relative;
        max-width: 100%;
        border-radius: 40px;
        left: 67.5px;
        top: 8px;
        cursor: pointer;
    }

    .chatbot-button-container button {
        position:relative;
        background-color: #00198C;
        color: #FFF;
        padding: 10px;
        gap: 10px;
        border-radius: 4px;
        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 500;
        cursor: pointer;
        font-size: medium;
    }
}

.chat-popup-container {
    position: fixed;
    right: 32px; 
    bottom: 32px; 
    width: calc(100% - 64px); 
    display: none;
    z-index: 10000;
}

@media screen and (min-width: 576px) {
    .chat-popup-container {
        position: fixed;
        right: 32px; 
        bottom: 32px; 
        width:456px; 
        display: none;
        z-index: 10000;
    }
        
}

.chatbot-header-container {
    padding: 16px 24px; 
    gap: 40px; 
    background: #FFFFFF; 
    border-radius: 8px 8px 0px 0px; 
    display: flex; 
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    font-family: 'Noto Sans';
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #1E1E1E;
}

.chatbot-notificaton-text {
    display: flex;
    flex-direction: row; 
    align-items: flex-start; 
    padding: 16px; 
    gap: 10px; 
    background: #FFDC32; 
    flex: none;
    order: 0;
    flex-grow: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px; 
    line-height: 180%; 
    display: flex; 
    align-items: center; 
    letter-spacing: 0.05em; 
    color: #1E1E1E;
}

.chatbot-notificaton-close {
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    padding: 8px 0px; 
    gap: 8px; 
    background: #646464; 
    border-radius: 0px 0px 8px 8px; 
    flex: none; 
    order: 1; 
    flex-grow: 0;
    font-family: 'Noto Sans'; 
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 180%;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    color: #FFDC32;
}

.chatbot-inquiry {
    padding: 0px 24px;
    gap: 16px;
    background: #E6E6E6;
    border-radius: 0px 0px 8px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}


.input-container {
    padding: 16px 24px 0px;
    gap: 16px;
    background: #E6E6E6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.input-container textarea {
    width: 368px;
    height: 48px;
    border: 1px solid #969696;
    border-radius: 4px;
    padding: 8px;
    resize: none;
    overflow: hidden;
    overflow-y: auto;
}

.chat-container {
    padding: 12px 16px 12px 8px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
}

.chat-picture {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.chat-message {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    border-radius: 4px;
    width: fit-content;
    word-break: break-word;
    padding: 8px 16px;
    margin: 12px 0px 0px;
    display: flex;
}

.chat-message p{
    /* remove webkit p margins */
    margin: 0px;
    padding: 0px;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
}

.user {
    background-color:#00198C;
    color: #FFFFFF;
    margin-left: 88px;
}

.bot {
    background-color: #FFFFFF;
    margin-right: 32px;
}

.bot-message-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
}

.user-message-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 16px;
}

.bot:before {
    content: "";
    position: relative;
    top: 0px;
    right: 0px;
    left: -25px;
    width: 0px;
    height: 0px;
    border: 5px solid #ffffff;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.user:after {
    content: "";
    position: relative;
    float: right;
    bottom: 0px;
    right: -25px;
    width: 0px;
    height: 0px;
    border: 5px solid #00198C;
    border-right-color: transparent;
    border-top-color: transparent;
}

.btn {
    background-color: transparent;
    border-width: 0;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding: 0;
}

.typewriter p {
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: .15em;
    animation: 
        typing 2s steps(4, end) -0.5s infinite;
}

@keyframes typing {
    from { width: 0%; }
    to {width: 100%; }
}

.inquiry-btn {
    background: #646464;
    padding: 10px 16px;
    border-radius: 16px;
    color: #FFFFFF;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    margin: 24px auto;
}

.fa-paper-plane {
    font-size: 24px;
}

.chat-gpt-bubble {
    display: none;
}

@media screen and (min-width: 576px) {
    .chat-gpt-bubble {
        background: #FFDC32;
        border-radius: 21px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items:center;
        text-align: center;
        color:#000;
        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 180%;
        padding: 8px 16px;
        width: auto;
    }
}

.chat-gpt-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 7px solid #FFDC32;
    border-bottom: 0;
    margin-left: -7px;
    margin-bottom: -6px;
    border-right-color: transparent;
    border-left-color: transparent;
  }