.whatsapp-widget {
    position: fixed;
    bottom: 72px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    white-space: nowrap;
    height: 40px;
    color: #000;
    transition: background-color 0.2s ease;
}

.whatsapp-button:hover {
    background-color: #e2e6ea;
}

.whatsapp-button img {
    width: 40px;
    cursor: pointer;
}

/* Popup Styling */
.whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    background: #075e54;
    color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.whatsapp-avatar {
    width: 45px;
    height: 42px;
    border-radius: 50%;
    margin-right: 10px;
}

.whatsapp-info p {
    font-size: 10px;
}

.whatsapp-close {
    margin-left: auto;
    font-size: 28px;
    cursor: pointer;
    margin-right: 8px;
}

.whatsapp-body {
    padding: 16px;
    background: #ece5dd;
}

.whatsapp-body p {
    background: #FFFFFF;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 5px;
    display: inline-block;
}

.whatsapp-start {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
}

.whatsapp-start:hover {
    color: #075e54;
}
