/* LChat widget container */
.lchat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

/* Chat icon styling */
.lchat-icon {
    cursor: pointer;
}

/* Inline SVG styling */
.lchat-svg-icon {
    display: block;
    width: 50px;
    height: 50px;
}

/* Notification popup styling (user-editable text) */
.lchat-notification {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    opacity: 0;
    animation: slideIn 0.6s forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hidden popup container */
.lchat-popup {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin-bottom: 10px;
    position: relative;
}

/* Heading styling */
.lchat-heading {
    font-size: 18px;
    margin: 0 0 10px 0;
}

/* FAQ option button style */
.lchat-faq-option {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    text-align: left;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.lchat-faq-option:hover {
    background: #eaeaea; /* This may be overridden by inline styles if set */
}

/* FAQ answer container style */
.lchat-answer {
    margin-bottom: 10px;
}

/* Back button style */
.lchat-back {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.lchat-back:hover {
    opacity: 0.8;
}

/* Action buttons container */
.lchat-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* Action buttons style */
.lchat-action {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

/* Stylized "Go Pro!" action link */
.lchat-go-pro {
    font-weight: bold;
    color: red !important;
}