/* Live Chat Widget Styles */
.lcw-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.lcw-chat-btn {
    background-color: #0073aa;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.lcw-chat-btn:hover {
    background-color: #005f8b;
}

.lcw-chat-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Hide Tawk.to default widget */
#tawkchat-container, .tawk-button {
    display: none !important;
}

@media (max-width: 600px) {
    .lcw-chat-widget {
        bottom: 10px;
        right: 10px;
    }
}