.wa-widget {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 220px;
    font-family: Arial, sans-serif;
    display: none;
    z-index: 1000;
}

.wa-header {
    background: #4dc247;
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wa-close {
    cursor: pointer;
    font-size: 18px;
}

.wa-option {
    display: block;
    padding: 10px;
    
    text-decoration: none;
    color: #333;
    border-top: 1px solid #eee;
}

.wa-option:hover {
    background: #f1f1f1;
}

.wa-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4dc247;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}