/* Support Chat Button Styles */
.support-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.support-chat-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.support-chat-button i {
    font-size: 24px;
}

.support-chat-tooltip {
    position: absolute;
    right: 75px;
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.support-chat-button:hover .support-chat-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .support-chat-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .support-chat-button i {
        font-size: 20px;
    }
}
