#whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

#whatsapp-form-popup {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1001;
}

#whatsapp-form-popup.active {
    display: flex !important;
}

#whatsapp-form {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 332px;
}

#whatsapp-form label {
    display: block;
}

#whatsapp-form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#whatsapp-form button {
    width: 100%;
    padding: 10px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.whatsapp-btn-icon {
    cursor: pointer;
}
