/**
 * SNIP Chatbot Styles
 * Version: 2.0.0
 */

/* Additional styles for Tawk.to integration */
.ge-agent-message {
    background-color: #e0f2fe !important;
    border-left: 3px solid #0ea5e9;
}

.ge-agent-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ge-agent-badge svg {
    width: 16px;
    height: 16px;
}

.ge-agent-status {
    margin: 10px 0;
    text-align: center;
    animation: pulse 2s infinite;
}

.ge-agent-status svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Ensure Tawk.to widget stays hidden */
#tawk-widget-container {
    display: none !important;
}

/* Admin page styles */
.snip-chatbot-info {
    margin-top: 40px;
    padding: 20px;
    background: #f1f1f1;
    border-left: 4px solid #0073aa;
}

.snip-chatbot-info h2 {
    margin-top: 0;
}

.snip-chatbot-info h3 {
    margin-top: 20px;
}