.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-widget img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.whatsapp-message {
    margin-right: 10px;
}

.whatsapp-chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 280px;
    background-color: #2c2c2c; /* Dark background */
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.whatsapp-chat-header {
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.whatsapp-chat-body {
    padding: 15px;
}

.whatsapp-chat-body p {
    background-color: #404040; /* Dark message bubble */
    color: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.whatsapp-chat-body button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.whatsapp-chat-body button:hover {
    background-color: #1ebc58; /* Slightly lighter green on hover */
}

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