#support-ai-agent .chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    background-color: #d03438;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 0;
}

#support-ai-agent .chat-window {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 320px;
    background-color: #ffffff;
    box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e4e5;
    border-radius: 5px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

#support-ai-agent .chat-header {
    background-color: #d03438;
    color: white;
    border-bottom: 1px solid #ececec;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#support-ai-agent .chat-header .close-chat,
#support-ai-agent .chat-header .saved-conversations {
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#support-ai-agent .chat-content {
    /* padding: 10px; */
    height: calc(100vh - 200px);
    overflow-y: auto;
    font-size: 14px;
}

.webchat__adaptive-card-renderer .ac-pushButton {
    border-radius: 5px;
    border-color: #e6e6e6;
    color: #000 !important;
}

.webchat__adaptive-card-renderer .ac-pushButton.style-default.primary.style-positive.ac-selectable {
    background: #33ab33;
    color: #fff !important;
}

.webchat__adaptive-card-renderer .ac-pushButton.style-destructive {
    background-color: rgb(228, 61, 61);
    color: #fff !important;
}

.webchat__suggested-action {
    height: 30px !important;
    border-radius: 5px !important;
}

.webchat__suggested-actions.webchat__suggested-actions--flow-layout .webchat__suggested-actions__flow-box {
    justify-content: end;
}

.webchat__adaptive-card-renderer .ac-pushButton[aria-pressed="true"] {
    background-color: rgb(177,177,177) !important;
    border-color: rgb(189,189,189) !important;
}

.webchat__suggested-actions.webchat__suggested-actions--flow-layout .webchat__suggested-actions__button-text {
    font-size: 12.5px;
}