#eww-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}

.eww-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.eww-button:hover {
    transform: translateY(-4px);
}

.eww-popup {
    width: 340px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    margin-bottom: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.35s ease;
}

.eww-popup.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.eww-header {
    background: #2DBE60;
    color: #ffffff;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

.eww-close {
    cursor: pointer;
    font-size: 18px;
}

.eww-body {
    padding: 25px;
}

.eww-message {
    background: #f1f1f1;
    padding: 10px 25px; 
	border-radius: 30px;
    margin-bottom: 22px;
    font-size: 14px;
    color: #555;
    width: fit-content;
}

#eww-open-chat {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #2DBE60;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#eww-open-chat:hover {
    background: #27a653;
}
