* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.app-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.app-header {
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-left h1 {
    font-size: 22px;
    color: #303133;
    margin-bottom: 4px;
}

.header-left .subtitle {
    font-size: 13px;
    color: #909399;
}

.app-main {
    background: white;
    border-radius: 12px;
    padding: 0;
    min-height: calc(100vh - 140px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Chat View */
.chat-view {
    height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 12px 20px;
    border-bottom: 1px solid #ebeef5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kiosk-label {
    color: #606266;
    font-size: 13px;
    font-weight: 600;
}

.kiosk-pos-select {
    width: 240px;
}

/* Chat Panel */
.chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f9fafc;
}

.chat-message {
    display: flex;
    margin-bottom: 20px;
    gap: 12px;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.chat-message.user .message-avatar {
    background: #409eff;
    color: white;
}

.chat-message.assistant .message-avatar {
    background: #67c23a;
    color: white;
}

.message-body {
    flex: 1;
    min-width: 0;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: inline-block;
    max-width: 100%;
}

.chat-message.user .message-content {
    background: #409eff;
    color: white;
}

.message-text {
    line-height: 1.7;
    word-break: break-word;
    white-space: pre-wrap;
}

.message-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.message-actions .el-button {
    padding: 4px 8px;
    font-size: 12px;
}

.route-card-inline {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(96, 132, 196, 0.16);
}

.summary-card {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.retrieval-summary-card {
    background: linear-gradient(180deg, rgba(250, 250, 255, 0.98), rgba(245, 247, 251, 0.98));
}

.route-summary-card {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(248, 250, 252, 0.98));
}

.route-card-inline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.route-card-inline-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2f46;
}

.route-card-inline-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: #6d7a90;
}

.route-card-inline-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.route-card-inline-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.9fr);
    gap: 14px;
}

.route-card-inline-section {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.route-card-inline-links {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}


/* Indoor navigation card */
.indoor-nav-card {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.96), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(20, 184, 166, 0.18);
    max-width: min(100%, 560px);
}

.indoor-nav-card .planner-note-box {
    margin-top: 12px;
}

.indoor-nav-image-link {
    display: block;
    margin-top: 12px;
    width: min(100%, 420px);
    text-decoration: none;
    color: inherit;
}

.indoor-nav-image {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.indoor-nav-image-caption {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

/* Sources */
.message-sources {
    margin-top: 12px;
    padding: 12px;
    background: #f4f4f5;
    border-radius: 8px;
    font-size: 13px;
}

.sources-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #606266;
    font-weight: 500;
    margin-bottom: 8px;
}

.sources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.summary-list {
    margin-bottom: 10px;
}

.retrieval-hit-list {
    margin-top: 8px;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: white;
    border-radius: 4px;
    font-size: 12px;
}

.source-index {
    width: 18px;
    height: 18px;
    background: #409eff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.source-name {
    color: #303133;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #c0c4cc;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Input Area */
.chat-input-area {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #ebeef5;
    display: flex;
    gap: 12px;
    align-items: center;
}

.input-wrapper {
    flex: 1;
}

.chat-input-box {
    --el-input-border-radius: 20px;
}

.input-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.speech-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 4px;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid #d7e2f2;
    background: #f4f7fc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.language-toggle-option {
    min-width: 52px;
    border: 0;
    background: transparent;
    color: #5b6472;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-toggle-option:hover {
    background: rgba(64, 158, 255, 0.08);
    color: #1f5fbf;
    transform: translateY(-1px);
}

.language-toggle-option.is-active {
    background: linear-gradient(180deg, #409eff 0%, #2f7fe8 100%);
    color: #fff;
    box-shadow: 0 8px 16px rgba(64, 158, 255, 0.24);
}

.language-toggle-option:focus-visible {
    outline: 2px solid rgba(64, 158, 255, 0.65);
    outline-offset: 2px;
}

/* Voice Input */
.voice-input {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.recording-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 0 10px;
    min-height: 32px;
    border-radius: 999px;
    background: rgba(245, 108, 108, 0.08);
    color: #c2410c;
    white-space: nowrap;
}

.recording-dot {
    width: 8px;
    height: 8px;
    background: #f56c6c;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.recording-indicator.is-processing {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.voice-input.is-busy .el-button {
    cursor: wait;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

/* Document View */
.docs-view {
    padding: 20px;
}

.doc-manager {
    padding: 0;
}

.doc-upload {
    margin-bottom: 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #dcdfe6;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0c4cc;
}

/* Responsive */
@media (max-width: 768px) {
    .app-container {
        padding: 10px;
    }
    
    .app-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .header-left .subtitle {
        display: none;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .message-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .chat-input-area {
        padding: 12px;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .input-wrapper {
        width: 100%;
    }

    .input-actions {
        width: 100%;
        justify-content: space-between;
    }

    .speech-controls {
        width: 100%;
        justify-content: space-between;
        margin-right: 0;
        flex-wrap: wrap;
    }

    .language-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .language-toggle-option {
        flex: 1;
        min-width: 0;
        font-size: 13px;
        padding: 10px 12px;
    }

    .voice-input {
        flex: 1;
    }

    .recording-indicator {
        max-width: calc(100vw - 170px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .knowledge-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .knowledge-toolbar-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .knowledge-panels {
        grid-template-columns: 1fr;
    }

    .service-panel-grid {
        grid-template-columns: 1fr;
    }
}

.hidden-file-input {
    display: none;
}

.knowledge-shell {
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
    min-height: 100%;
}

.knowledge-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.knowledge-title {
    font-size: 24px;
    font-weight: 700;
    color: #24324a;
}

.knowledge-subtitle {
    margin-top: 4px;
    font-size: 13px;
    color: #6b778c;
}

.knowledge-toolbar-actions {
    display: flex;
    gap: 10px;
}

.knowledge-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.knowledge-stat-card {
    position: relative;
    padding: 18px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(140, 155, 178, 0.18);
    box-shadow: 0 12px 32px rgba(31, 50, 81, 0.08);
    overflow: hidden;
}

.knowledge-stat-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 999px;
    background: #7b8aa8;
}

.knowledge-stat-card.accent-blue::before { background: #3b82f6; }
.knowledge-stat-card.accent-green::before { background: #16a34a; }
.knowledge-stat-card.accent-amber::before { background: #d97706; }
.knowledge-stat-card.accent-slate::before { background: #475569; }

.knowledge-stat-label {
    color: #6b778c;
    font-size: 13px;
}

.knowledge-stat-value {
    margin-top: 8px;
    font-size: 30px;
    font-weight: 700;
    color: #1f2f46;
}

.knowledge-stat-meta {
    margin-top: 6px;
    font-size: 12px;
    color: #8a97ad;
}

.knowledge-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.knowledge-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(140, 155, 178, 0.18);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(31, 50, 81, 0.08);
    overflow: hidden;
}

.knowledge-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 14px;
}

.knowledge-panel-header.compact {
    padding-bottom: 10px;
}

.panel-title {
    font-size: 17px;
    font-weight: 700;
    color: #22324b;
}

.panel-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: #7c879a;
}

.panel-status-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.knowledge-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px 16px;
    font-size: 13px;
    color: #6d7a90;
}

.breadcrumb-link {
    cursor: pointer;
    color: #3567c9;
}

.breadcrumb-link:hover {
    color: #1f4fb0;
}

.breadcrumb-separator {
    color: #a1aaba;
}

.knowledge-table {
    padding: 0 10px 14px;
}

.knowledge-table .el-table__cell {
    vertical-align: top;
}

.file-name-cell,
.file-item-text,
.file-jump {
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-jump {
    border: 0;
    padding: 0;
    background: transparent;
    color: #2454b8;
    cursor: pointer;
    font: inherit;
}

.file-item-text {
    color: #334155;
}

.file-name-cell-stack,
.file-item-text-stack {
    align-items: flex-start;
}

.file-item-text-stack {
    flex-direction: column;
    gap: 8px;
}

.file-item-heading,
.file-inline-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.file-inline-meta {
    row-gap: 6px;
}

.action-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.action-row {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.action-row-primary .el-button,
.action-row-secondary .el-button {
    min-width: 68px;
}

.recent-file-list {
    display: flex;
    flex-direction: column;
    padding: 0 18px 18px;
    gap: 12px;
}

.recent-file-item {
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(244, 248, 255, 0.95), rgba(250, 251, 255, 0.92));
    border: 1px solid rgba(140, 155, 178, 0.16);
}

.recent-file-name {
    font-weight: 600;
    color: #29384f;
}

.recent-file-meta {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #7f8aa0;
}

.knowledge-code-block {
    margin: 0;
    padding: 16px;
    max-height: 60vh;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    border-radius: 14px;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.7;
}

.progress-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #506079;
}

.progress-hint {
    font-size: 12px;
    color: #8591a6;
    line-height: 1.5;
}

.service-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff, #f1f5fb);
    border: 1px solid rgba(140, 155, 178, 0.16);
}

.service-card.wide {
    grid-column: 1 / -1;
}

.service-card-title {
    font-size: 13px;
    color: #6d7a90;
}

.service-card-value {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #23324a;
}

.service-card-meta {
    margin-top: 6px;
    font-size: 12px;
    color: #8591a6;
}

.service-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.service-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.service-chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: #2357c4;
    font-size: 12px;
    font-weight: 600;
}

.planner-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.96));
}

.planner-toolbar {
    align-items: flex-start;
}

.planner-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.planner-panels {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
}

.planner-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 20px 16px;
}

.planner-field-label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #42526b;
}

.planner-select {
    width: 100%;
}

.planner-hint-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px 18px;
    color: #7c879a;
    font-size: 12px;
    flex-wrap: wrap;
}

.planner-stats-grid {
    padding: 0 20px 20px;
    margin-bottom: 0;
}

.planner-section {
    padding: 0 20px 20px;
}

.planner-section-title {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #22324b;
}

.planner-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #f8fbff);
    border: 1px solid rgba(96, 132, 196, 0.18);
}

.planner-summary-route {
    font-size: 20px;
    font-weight: 700;
    color: #1f2f46;
}

.planner-summary-meta {
    margin-top: 6px;
    font-size: 12px;
    color: #6d7a90;
}

.planner-summary-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.planner-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: #2357c4;
    font-size: 12px;
    font-weight: 700;
}

.planner-timeline {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.planner-timeline.compact {
    gap: 8px;
}

.planner-stop {
    position: relative;
    padding: 14px 14px 14px 18px;
    border-radius: 14px;
    background: white;
    border: 1px solid rgba(140, 155, 178, 0.16);
}

.planner-stop.compact,
.planner-static-card.compact,
.planner-note-box.compact {
    padding: 12px;
}

.planner-stop::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: #2563eb;
}

.planner-stop-name {
    font-weight: 700;
    color: #24324a;
}

.planner-stop-meta {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #6d7a90;
}

.planner-note-box,
.planner-static-card,
.planner-qr-card,
.planner-map-placeholder {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff, #f1f5fb);
    border: 1px solid rgba(140, 155, 178, 0.16);
}

.planner-note-title,
.planner-static-title {
    font-size: 14px;
    font-weight: 700;
    color: #22324b;
}

.planner-note-list {
    margin: 10px 0 0 18px;
    color: #516178;
    line-height: 1.7;
}

.planner-static-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.planner-static-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #52627a;
}

.planner-option-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.planner-option-card {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(140, 155, 178, 0.18);
    border-radius: 16px;
    background: white;
    color: #334155;
    text-align: left;
    cursor: pointer;
}

.planner-option-card.is-active {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.planner-map-panel {
    padding: 0 18px 18px;
}

.planner-map-frame {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 18px;
    background: #eef2ff;
}

.planner-map-placeholder {
    color: #52627a;
    line-height: 1.7;
}

.planner-map-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.planner-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration: none;
    background: rgba(59, 130, 246, 0.08);
    color: #2357c4;
    font-weight: 600;
}

.planner-link-button.primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.planner-qr-card {
    margin-top: 16px;
    text-align: center;
}

.qr-inline-card {
    margin-top: 12px;
}

.planner-qr-image {
    width: 180px;
    max-width: 100%;
    border-radius: 12px;
    background: white;
}

.planner-qr-text {
    margin-top: 10px;
    font-size: 12px;
    color: #6d7a90;
}

@media (max-width: 768px) {
    .planner-form-grid,
    .planner-static-grid,
    .planner-panels,
    .route-card-inline-grid {
        grid-template-columns: 1fr;
    }

    .planner-summary-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .route-card-inline-header {
        flex-direction: column;
    }

    .planner-summary-badges {
        justify-content: flex-start;
    }

    .route-card-inline-badges {
        justify-content: flex-start;
    }

    .indoor-nav-card {
        max-width: 100%;
    }

    .indoor-nav-image-link {
        width: 100%;
    }

    .indoor-nav-image {
        max-height: 220px;
    }

    .planner-toolbar-actions {
        width: 100%;
    }
}

.knowledge-upload-batch {
    margin: 0 0 14px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.78);
}

.upload-batch-header,
.upload-task-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.upload-task-row {
    padding: 10px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.upload-task-row:first-of-type {
    border-top: none;
}

.upload-task-name {
    font-weight: 600;
    color: #334155;
    word-break: break-all;
}
