#wyse-wa-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#wyse-wa-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.28);
}

#wyse-wa-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    display: none;
    flex-direction: column;
    z-index: 9999;
    animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

#wyse-wa-popup.open { display: flex; }

#wyse-wa-popup input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

#wyse-send {
    background: #25D366;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
}

#wyse-send:hover {
    background: #1ebe5c;
}
