.ai-runtime {
    width: 100%;
}

.ai-runtime-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: var(--slate-50);
    border-radius: 8px;
}

.ai-runtime-header code {
    background: transparent;
    color: var(--slate-500);
    font-size: 13px;
    margin-left: 8px;
    word-break: break-all;
}

.ai-runtime-state {
    padding: 24px;
    text-align: center;
    color: var(--slate-500);
}

.ai-runtime-error {
    color: var(--red-700);
    background: rgba(176, 0, 32, 0.05);
    border-radius: 8px;
}

.ai-runtime-section-title {
    margin: 24px 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-800);
}

.ai-runtime-empty {
    color: var(--slate-400);
    font-size: 13px;
    padding: 8px 16px;
}

.ai-runtime-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-runtime-item {
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
}

.ai-runtime-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.ai-runtime-item-header strong {
    font-size: 14px;
}

.ai-runtime-item-type {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    background: var(--surface-subtle, #f0f0f2);
    border-radius: 4px;
    font-size: 11px;
    color: var(--slate-500);
    font-family: monospace;
}

.ai-runtime-item-endpoint {
    font-family: monospace;
    font-size: 12px;
    color: var(--slate-500);
    text-align: right;
}

.ai-runtime-item-desc {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.5;
}

.ai-runtime-item-curl {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--slate-200);
}

.ai-runtime-curl-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.ai-runtime-item-curl pre {
    background: #1e1e28;
    color: #e6e6e6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    overflow-x: auto;
    margin: 0 0 12px;
}
