/* WhatsApp Widget Styles */
html body .whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2147483647;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    pointer-events: auto;
    box-sizing: border-box;
    display: block;
    /* Override perspective properties */
    perspective: none !important;
    transform-style: flat !important;
    transform: none !important;
    -webkit-transform-style: flat !important;
    -webkit-perspective: none !important;
    /* Create own stacking context */
    isolation: isolate;
    /* Additional overrides */
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
}

/* Reset any inherited perspective */
html body .whatsapp-widget * {
    perspective: none !important;
    transform-style: flat !important;
    transform: none !important;
    -webkit-transform-style: flat !important;
    -webkit-perspective: none !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
}

.whatsapp-widget .chat-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    /* Ensure button stays flat */
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

.whatsapp-widget .chat-button:hover {
    transform: scale(1.05) translateZ(0) !important;
    -webkit-transform: scale(1.05) translateZ(0) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-widget .whatsapp-icon {
    font-size: 24px;
    margin-right: 10px;
    display: inline-block;
} 