.whatsapp-button-container {
    position: fixed;
    z-index: 9990;
    transition: all 0.3s ease;
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
}

/* Prevent overlapping with WordPress admin bar */
.admin-bar .whatsapp-button-container {
    top: 550px;
}

@media screen and (max-width: 782px) {
    .admin-bar .whatsapp-button-container {
        top: 46px;
    }
}

/* Ensure proper positioning on mobile devices */
@media (max-width: 768px) {
    .whatsapp-button-container {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;
    }
}

/* Force correct positioning for all themes */


/* Box sizing to prevent overflow issues */
.whatsapp-button-container * {
    box-sizing: border-box !important;
}