/* frontend/css/rag-agentic.css */

#rag-agentic-btn.active {
    border-left: 3px solid #61C276;
    font-weight: 600;
}

.badge-active {
    display: inline-block;
    background: #61C276;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: bold;
}

#streamingToggleBtn.rag-locked {
    filter: grayscale(80%);
}

.rag-lock-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ED7470;
    color: white;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 10;
    animation: pulse-lock 2s infinite;
}

@keyframes pulse-lock {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}