/* 狐线Pro 测试客户端样式 */

/* 基础样式 */
* {
    box-sizing: border-box;
}

/* 导航菜单 */
.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background-color 0.15s, color 0.15s;
}

.nav-btn:hover {
    background-color: #f3f4f6;
}

.nav-btn.active {
    background-color: #dbeafe;
    color: #1d4ed8;
    font-weight: 500;
}

.nav-btn .icon {
    font-size: 16px;
}

/* 标签面板 - 使用 !important 确保覆盖 Tailwind 的 inline flex 类 */
.tab-panel {
    display: none !important;
}

.tab-panel.active {
    display: flex !important;
    flex-direction: column;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 消息样式 */
.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
}

.message.user {
    background-color: #3b82f6;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.message.assistant {
    background-color: white;
    color: #1f2937;
    margin-right: auto;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.system {
    background-color: #fef3c7;
    color: #92400e;
    margin: 0 auto;
    font-size: 13px;
    max-width: 90%;
}

.message.error {
    background-color: #fee2e2;
    color: #dc2626;
    margin: 0 auto;
    font-size: 13px;
}

.message .role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 4px;
}

.message .content {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.message .content p {
    margin: 0 0 8px 0;
}

.message .content p:last-child {
    margin-bottom: 0;
}

.message .content code {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

.message .content pre {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
}

.message .content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* 思考块样式 */
.thinking-block {
    background-color: #f3f4f6;
    border-left: 3px solid #9ca3af;
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 13px;
    color: #4b5563;
    border-radius: 0 8px 8px 0;
}

.thinking-block summary {
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
}

/* 工具调用容器 */
.tool-calls-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

/* 工具调用样式 */
.tool-call {
    background-color: #ede9fe;
    border-left: 3px solid #8b5cf6;
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 13px;
    border-radius: 0 8px 8px 0;
}

.tool-call.streaming {
    background-color: #fef3c7;
    border-left-color: #f59e0b;
    animation: pulse 1.5s infinite;
}

.tool-call.completed {
    background-color: #d1fae5;
    border-left-color: #10b981;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tool-call .tool-name {
    font-weight: 600;
    color: #7c3aed;
}

.tool-call.streaming .tool-name {
    color: #d97706;
}

.tool-call.completed .tool-name {
    color: #059669;
}

.tool-call .tool-args {
    font-family: monospace;
    font-size: 12px;
    color: #5b21b6;
    margin-top: 4px;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 400px;
    overflow-y: auto;
}

.tool-call .tool-args pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.tool-call .tool-result {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    font-family: monospace;
    font-size: 12px;
    color: #4c1d95;
    max-height: 600px;
    overflow-y: auto;
}

.tool-call .tool-result pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

/* 思考内容隐藏 */
.thinking-content.hidden {
    display: none;
}

/* 流式输出光标 */
.streaming-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: #3b82f6;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Toast 通知 */
.toast {
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.toast.success {
    background-color: #10b981;
}

.toast.error {
    background-color: #ef4444;
}

.toast.warning {
    background-color: #f59e0b;
}

.toast.info {
    background-color: #3b82f6;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Konva 画布节点样式（通过 JS 控制） */
.canvas-node-selected {
    stroke: #3b82f6;
    stroke-width: 2;
}

/* 加载状态 */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 禁用状态 */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 输入框焦点 */
input:focus, textarea:focus, select:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    #app-panel > div:last-child {
        display: none; /* 隐藏画布面板 */
    }
}

@media (max-width: 768px) {
    #app-panel > div:first-child {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 10;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    #app-panel > div:first-child.open {
        transform: translateX(0);
    }
}

/* 高级筛选面板样式 */
.advanced-filter {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #fafafa;
}

.advanced-filter summary {
    padding: 8px 12px;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.advanced-filter summary::-webkit-details-marker {
    display: none;
}

.advanced-filter summary::before {
    content: '\25B6';
    font-size: 10px;
    transition: transform 0.2s ease;
}

.advanced-filter[open] summary::before {
    transform: rotate(90deg);
}

.advanced-filter[open] summary {
    color: #3b82f6;
    border-bottom: 1px solid #e5e7eb;
}

.advanced-filter .filter-content {
    border-top: none;
}

.advanced-filter .filter-content input,
.advanced-filter .filter-content select {
    font-size: 12px;
}

.advanced-filter .filter-content input[type="datetime-local"] {
    font-size: 11px;
}

.advanced-filter .filter-content input[type="number"] {
    text-align: center;
}

.advanced-filter .filter-content label {
    cursor: pointer;
}

.advanced-filter .filter-content input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

/* 可调整大小的面板 */
.resize-handle-top {
    flex-shrink: 0;
    background: linear-gradient(to bottom, #e5e7eb 0%, #d1d5db 100%);
    transition: background 0.15s;
}

.resize-handle-top:hover {
    background: linear-gradient(to bottom, #93c5fd 0%, #3b82f6 100%);
}

.resize-handle-top:active {
    background: #3b82f6;
}

/* ========== 对话 WebSocket 聊天界面样式 ========== */

/* 聊天消息容器 */
.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 用户消息 - 右对齐 */
.chat-message.user {
    align-self: flex-end;
}

.chat-message.user .chat-bubble {
    background-color: #3b82f6;
    color: white;
    border-radius: 16px 16px 4px 16px;
}

.chat-message.user .chat-bubble code {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 助手消息 - 左对齐 */
.chat-message.assistant {
    align-self: flex-start;
}

.chat-message.assistant .chat-bubble {
    background-color: white;
    color: #1f2937;
    border-radius: 16px 16px 16px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 系统消息 - 居中 */
.chat-message.system {
    align-self: center;
    max-width: 90%;
}

.chat-message.system .chat-bubble {
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* 错误消息 */
.chat-message.error .chat-bubble {
    background-color: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
}

/* 消息气泡 */
.chat-bubble {
    padding: 12px 16px;
    line-height: 1.5;
}

.chat-bubble p {
    margin: 0 0 8px 0;
}

.chat-bubble p:last-child {
    margin-bottom: 0;
}

.chat-bubble code {
    background-color: rgba(0, 0, 0, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

.chat-bubble pre {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
    font-size: 13px;
}

.chat-bubble pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* 消息角色标签 */
.chat-role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 消息编辑按钮 */
.msg-edit-btn {
    padding: 2px 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    color: #6b7280;
    border-radius: 4px;
}

.chat-message:hover .msg-edit-btn {
    opacity: 0.6;
}

.msg-edit-btn:hover {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.05);
    color: #3b82f6;
}

.msg-edit-btn svg {
    width: 12px;
    height: 12px;
}

/* 消息时间戳 */
.chat-time {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 4px;
}

/* 流式输出效果 */
.chat-bubble.streaming::after {
    content: '▊';
    animation: blink 0.8s infinite;
    color: #3b82f6;
    margin-left: 2px;
}

/* 工具卡片容器 */
.tool-cards-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

/* 工具卡片样式（聊天界面内） */
.chat-tool-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 8px 0;
    overflow: hidden;
}

.chat-tool-card .tool-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.chat-tool-card .tool-icon {
    font-size: 16px;
}

.chat-tool-card .tool-name {
    font-weight: 600;
    color: #475569;
    font-size: 13px;
}

.chat-tool-card .tool-status {
    margin-left: auto;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    background-color: #e2e8f0;
    color: #64748b;
}

.chat-tool-card.streaming .tool-status {
    background-color: #fef3c7;
    color: #d97706;
    animation: pulse 1.5s infinite;
}

.chat-tool-card.completed .tool-status {
    background-color: #d1fae5;
    color: #059669;
}

.chat-tool-card.pending {
    border-color: #fbbf24;
    background-color: #fffbeb;
}

.chat-tool-card.pending .tool-header {
    background-color: #fef3c7;
}

.chat-tool-card.pending .tool-status {
    background-color: #fef3c7;
    color: #d97706;
}

.chat-tool-card.rejected {
    border-color: #f87171;
    background-color: #fef2f2;
}

.chat-tool-card.rejected .tool-header {
    background-color: #fee2e2;
}

.chat-tool-card.rejected .tool-status {
    background-color: #fee2e2;
    color: #dc2626;
}

.chat-tool-card.accepted {
    border-color: #34d399;
    background-color: #ecfdf5;
}

.chat-tool-card.accepted .tool-header {
    background-color: #d1fae5;
}

.chat-tool-card.accepted .tool-status {
    background-color: #d1fae5;
    color: #059669;
}

.chat-tool-card .tool-body {
    padding: 12px;
}

.chat-tool-card .tool-args {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    color: #475569;
    background-color: #f8fafc;
    padding: 8px;
    border-radius: 6px;
    max-height: 150px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.chat-tool-card .tool-result {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

.chat-tool-card .tool-result-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}

.chat-tool-card .tool-result-content {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    color: #334155;
    max-height: 600px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

/* ========== Code Interpreter 工具参数样式 ========== */

/* 参数区域容器 */
.tool-arg-section {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.tool-arg-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* 参数标签 */
.tool-arg-label {
    display: inline-block;
    font-weight: 600;
    color: #475569;
    font-size: 12px;
    margin-bottom: 6px;
}

/* 代码预览 */
.tool-code-preview {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 10px 12px;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    line-height: 1.5;
    margin: 6px 0 0 0;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 200px;
    overflow-y: auto;
}

/* 文件列表 */
.tool-file-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
}

.tool-file-list li {
    padding: 6px 10px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tool-file-list li:last-child {
    margin-bottom: 0;
}

/* 文件路径元数据 */
.file-path {
    color: #64748b;
    font-size: 11px;
}

/* 文件 ID 元数据 */
.file-id {
    color: #94a3b8;
    font-size: 10px;
    font-family: 'Consolas', 'Monaco', monospace;
}

/* 可点击的文件链接 */
.file-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    color: #1e40af;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.file-link:hover {
    background-color: #dbeafe;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

/* 图像链接样式 */
.file-link.image-link {
    background-color: #fef3c7;
    border-color: #fde68a;
    color: #92400e;
}

.file-link.image-link:hover {
    background-color: #fde68a;
    border-color: #fcd34d;
}

/* 工具结果内容（增强样式） */
.tool-result-content {
    background-color: #f8fafc;
    padding: 10px 12px;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    color: #334155;
    line-height: 1.5;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

/* 工具头部图标 */
.tool-header-icon {
    font-size: 16px;
    line-height: 1;
}

/* 思考块样式（聊天界面内） */
.chat-thinking {
    margin: 8px 0;
}

.chat-thinking summary {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    user-select: none;
}

.chat-thinking summary:hover {
    background-color: #e5e7eb;
}

.chat-thinking summary::before {
    content: '🤔';
}

.chat-thinking[open] summary {
    border-radius: 8px 8px 0 0;
}

.chat-thinking .thinking-content {
    padding: 12px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    font-size: 13px;
    color: #4b5563;
    white-space: pre-wrap;
    max-height: 300px;
    overflow-y: auto;
}

.chat-thinking .thinking-content.streaming::after {
    content: '▊';
    animation: blink 0.8s infinite;
    color: #6b7280;
}

/* AskUser 交互面板（聊天界面内） */
.chat-ask-user {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 16px;
    margin: 8px 0;
}

.chat-ask-user .question-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-ask-user .question-header .icon {
    font-size: 20px;
}

.chat-ask-user .question-header .label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3b82f6;
    background-color: #dbeafe;
    padding: 2px 8px;
    border-radius: 4px;
}

.chat-ask-user .question-text {
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 12px;
    font-weight: 500;
}

.chat-ask-user .options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-ask-user .option-btn {
    padding: 8px 16px;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    background-color: white;
    color: #1e40af;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}

.chat-ask-user .option-btn:hover {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.chat-ask-user .option-btn.selected {
    border-color: #3b82f6;
    background-color: #3b82f6;
    color: white;
}

.chat-ask-user .option-btn.other {
    border-style: dashed;
}

.chat-ask-user .other-input {
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    font-size: 13px;
}

.chat-ask-user .submit-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s;
}

.chat-ask-user .submit-btn:hover {
    background-color: #2563eb;
}

.chat-ask-user .submit-btn:disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
}

/* 图片渲染 */
.chat-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    margin: 8px 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-image:hover {
    transform: scale(1.02);
}

.chat-image-error {
    padding: 12px 16px;
    background-color: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    font-size: 13px;
    margin: 8px 0;
}

/* 原始日志条目 */
.log-entry {
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 11px;
    word-break: break-all;
}

.log-entry.sent {
    background-color: #dbeafe;
    color: #1e40af;
}

.log-entry.received {
    background-color: #d1fae5;
    color: #065f46;
}

.log-entry.error {
    background-color: #fee2e2;
    color: #dc2626;
}

.log-entry.system {
    background-color: #f3f4f6;
    color: #6b7280;
}

.log-entry .log-time {
    color: #9ca3af;
    margin-right: 4px;
}

/* 工具确认请求面板 */
.chat-tool-confirm {
    background-color: #fefce8;
    border: 1px solid #fde047;
    border-radius: 12px;
    padding: 16px;
    margin: 8px 0;
}

.chat-tool-confirm .confirm-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #854d0e;
}

.chat-tool-confirm .confirm-desc {
    font-size: 13px;
    color: #713f12;
    margin-bottom: 12px;
}

.chat-tool-confirm .confirm-args {
    background-color: white;
    padding: 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.chat-tool-confirm .confirm-diff {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.chat-tool-confirm .confirm-actions {
    display: flex;
    gap: 8px;
}

.chat-tool-confirm .btn-accept {
    padding: 8px 16px;
    background-color: #22c55e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.chat-tool-confirm .btn-reject {
    padding: 8px 16px;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.chat-tool-confirm .btn-edit {
    padding: 8px 16px;
    background-color: #f59e0b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

/* AskUser 历史卡片样式（已完成的对话历史） */
.ask-user-card {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.ask-user-card .tool-header {
    background-color: #dbeafe;
    border-bottom-color: #bfdbfe;
}

.ask-user-card .tool-name {
    color: #1e40af;
}

.ask-user-content {
    padding: 12px;
}

.ask-user-question {
    margin-bottom: 12px;
}

.ask-user-question:last-child {
    margin-bottom: 0;
}

.ask-user-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3b82f6;
    background-color: #dbeafe;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

.ask-user-text {
    font-size: 14px;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 8px;
}

.ask-user-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ask-user-option {
    padding: 4px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    background-color: white;
    color: #64748b;
    font-size: 12px;
}

.ask-user-option.selected {
    border-color: #3b82f6;
    background-color: #3b82f6;
    color: white;
    font-weight: 500;
}

.ask-user-option.other {
    border-style: dashed;
}
