.wpc-popup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.wpc-popup-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.wpc-popup-btn:hover {
    transform: scale(1.1);
}

.wpc-popup-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.wpc-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 20px;
}

.wpc-modal.active {
    display: block;
}

.wpc-modal h3 {
    margin-top: 0;
    color: #075E54;
}

.wpc-form-group {
    margin-bottom: 15px;
}

.wpc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.wpc-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wpc-submit-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
}

.wpc-submit-btn:hover {
    background-color: #128C7E;
}