.bot-main-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 9999999;
    overflow: visible;
}

.bot-button-wrapper {
    position: fixed;
    bottom: 2dvh;
    left: 1dvw;
    z-index: 1000;
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 8px;
}

.bot-text-box {
    background-color: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: 220px;
    border: 1px solid #e0e0e0; 
}

#bot-textBox1, #bot-textBox2 {
    margin: 0 0 8px 0; 
}

.bot-floating-button {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-top: 8px;
}

.bot-floating-button img {
    height: 24px;
    width: 82px;
}
.bot-floating-button cross {
    height: 48px;
    width: 48px;
}

.bot-popup-window {
    display: none;
    border: none;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px;
    bottom: 5rem;
    left: 1rem;
    right: unset;
    width: 448px;
    height: 85dvh;
    max-height: 824px;
    border-radius: 0.75rem;
    z-index: 2147483646;
    overflow: hidden;
}


.bot-close-button {
    position: fixed;
    bottom: 2.5rem;  /* Below the iframe */
    z-index: 2147483647;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.bot-close-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.bot-close-button img {
    width: 20px;
    height: 20px;
}