.chat-box {
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 13px;
    width: 196px;
    height: 225px;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #fff;
    z-index: 1000;
    font-family: "Wix Madefor Text";
}
.chat-box .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.chat-box.hidden {
    display: none;
}
.chat-box .icon {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.chat-box .icon svg {
    width: 50px;
    height: 50px;
}
.chat-box .title {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #659C1C;
    line-height: 19.6px;
}
.chat-box .description {
    text-align: center;
    color: #2E3525;
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    padding: 0 20px;
}
.chat-box .chat-button {
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.chat-box .chat-button button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 30px;
    font-size: 14px;
    cursor: pointer;
}
.chat-box .chat-button button:hover {
    background-color: #45a049;
}
.chat-box .chat-button svg {
    width: 20px;
    height: 20px;
}