/* Custom styles for agentplatform web UI */

.stream-content {
    white-space: pre-wrap;
    word-break: break-word;
}

.tool-card {
    border-left: 3px solid #6366f1;
}

.handoff-indicator {
    border-left: 3px solid #f59e0b;
}

.error-alert {
    border-left: 3px solid #ef4444;
}

.status-running {
    color: #22c55e;
}

.status-stopped {
    color: #6b7280;
}

.status-error {
    color: #ef4444;
}

.status-starting {
    color: #f59e0b;
}

/* Chat container */
.chat-messages {
    height: calc(100vh - 280px);
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Monaco editor placeholder */
.editor-container {
    min-height: 400px;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

/* Streaming text cursor animation */
.typing-cursor::after {
    content: '\25ca';
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
