.chatbot-overlay {
    position: fixed;
    bottom: 120px;  /* Position above the chat button */
    /* bottom: 0; */
    right: 32px;   /* Align with the chat button */
    /* right: 0; */
    width: 400px;  /* Fixed width for chat window */
    height: 70vh; /* Fixed height for chat window */
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.chatbot-overlay.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.chatbot-container {
    position: absolute;
    /* bottom: 32px;
    bottom: 120px;
    right: 120px;
    right: 32px; */
    width: 100%;
    height: 100%;
    background: #17171c;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* box-shadow: 1px -1px 2px rgba(255, 255, 255, 0.3); */
    overflow: hidden;
}

.visible .chatbot-container {
    transform: translateY(0);
}

.chatbot-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    display: none;
}
.chatbot-close i {
    font-size: 16px!important;
}
.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #0b0f14;
    pointer-events: auto;
}
