/* whatsapp-button.css */

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f7f7;
}

/* Container for the WhatsApp elements */
.whatsapp-chat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Message Input Area */
.message-input-container {
    margin-bottom: 20px;
    text-align: center;
}

.message-input-container textarea {
    width: 300px;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    resize: vertical;
}

.message-input-container button {
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.message-input-container button:hover {
    background-color: #128c7e;
}

/* WhatsApp Button Styling */
.whatsapp-chat-button {
    display: flex;
    align-items: center;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-chat-button:hover {
    opacity: 0.8;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.whatsapp-text {
    color: white;
    margin-left: 10px;
    font-size: 16px;
}
