/* Minimal WhatsApp Sticky Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    text-decoration: none;
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}
