.wws-icon {
    background: #2ab317;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wws-disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.wws-disabled-btn {
    background: #ccc !important;
    cursor: not-allowed;
}
#wws-button {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
}

.wws-bottom-right { bottom: 20px; right: 20px; }
.wws-bottom-left  { bottom: 20px; left: 20px; }
.wws-top-right    { top: 20px; right: 20px; }
.wws-top-left     { top: 20px; left: 20px; }

.wws-icon {
    background: #2ab317;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wws-icon img {
    width: 35px;
    height: 35px;
}

#wws-chatbox {
    position: fixed;
    width: 380px;
    max-width: 95%;
    height: 500px;
    background: white;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
}

.wws-header {
    background: #25D366;
    color: white;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.wws-body {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
}

.wws-bot-msg {
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 8px;
}

.wws-user-msg {
    background: #DCF8C6;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    text-align: right;
}

.wws-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

.wws-input-area input {
    flex: 1;
    padding: 10px;
    border: none;
}

.wws-input-area button {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.wws-go-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
