.whatsapp-popup {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 300px;
    background: #efeae2;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    z-index: 9999;
}

.whatsapp-header {
    background: #128c7e;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.whatsapp-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.whatsapp-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.whatsapp-content input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

.whatsapp-content button {
    background: #075e54;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.whatsapp-content button:hover {
    background: #064e46;
}