/* LLM Status Indicator Styles */
.llm-status-indicator {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

/* Status levels */
.status-low {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.status-normal {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #2196f3;
}

.status-high {
    background-color: #fff3e0;
    color: #e65100;
    border: 1px solid #ff9800;
}

.status-extreme {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

.status-overloaded {
    background-color: #f3e5f5;
    color: #6a1b9a;
    border: 1px solid #9c27b0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dark mode styles */
[data-theme="dark"] .status-low {
    background-color: rgba(76, 175, 80, 0.2);
    color: #81c784;
    border-color: #4caf50;
}

[data-theme="dark"] .status-normal {
    background-color: rgba(33, 150, 243, 0.2);
    color: #64b5f6;
    border-color: #2196f3;
}

[data-theme="dark"] .status-high {
    background-color: rgba(255, 152, 0, 0.2);
    color: #ffb74d;
    border-color: #ff9800;
}

[data-theme="dark"] .status-extreme {
    background-color: rgba(244, 67, 54, 0.2);
    color: #ef5350;
    border-color: #f44336;
}

[data-theme="dark"] .status-overloaded {
    background-color: rgba(156, 39, 176, 0.2);
    color: #ba68c8;
    border-color: #9c27b0;
}