/* General body style for demonstration */
body {
    height: 2000px; /* To allow scrolling and show fixed position */
    font-family: sans-serif;
}

/* The floating button itself */
.open-button {
    background-color: #25d366; /* WhatsApp green */
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 90px; /* Position above the main button */
    right: 20px;
    border: 3px solid #f1f1f1;
    z-index: 99;
    background-color: white;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Add styles to the form container */
.form-container {
    padding: 10px;
}

.content-whatsapp.-top {
    background-color: #075E54; /* Dark green header */
    color: white;
    padding: 10px;
    border-radius: 7px 7px 0 0;
}

.closePopup {
    background: none;
    border: none;
    color: white;
    float: right;
    cursor: pointer;
}

.chat-link {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}
