/* 全局样式 */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #d946ef 100%);
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.3), transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.2), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* 容器背景 */
.container-fluid {
    background: transparent;
    position: relative;
    z-index: 1;
}

/* 任务卡片样式 */
.task-card {
    border: none;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.task-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    border-radius: 20px 0 0 20px;
}

.task-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-6px) scale(1.01);
}

.task-card.disabled {
    background-color: #f8f9fa;
    opacity: 0.6;
}

.task-card.disabled::before {
    background: #cbd5e0;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.task-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.task-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.task-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.task-badge:hover {
    transform: translateY(-1px);
}

.task-badge i {
    margin-right: 0.35rem;
    font-size: 0.875rem;
}

.task-badge.type-text {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.3);
}

.task-badge.type-markdown {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    color: #0891b2;
    border-color: rgba(6, 182, 212, 0.3);
}

.task-badge.type-news {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.3);
}

.task-badge.schedule-daily {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.3);
}

.task-badge.schedule-weekly {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #2563eb;
    border-color: rgba(59, 130, 246, 0.3);
}

.task-badge.schedule-monthly {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #9333ea;
    border-color: rgba(168, 85, 247, 0.3);
}

.task-content {
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 14px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #4a5568;
    max-height: 120px;
    overflow-y: auto;
    line-height: 1.7;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.task-actions {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.task-actions .btn {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.task-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.task-actions .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.task-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.task-actions .btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.task-actions .btn-success:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.task-actions .btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.task-actions .btn-warning:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.task-actions .btn-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.task-actions .btn-info:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.task-actions .btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.task-actions .btn-danger:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.task-info {
    font-size: 0.8125rem;
    color: #718096;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 8px;
    border-left: 3px solid #e2e8f0;
}

.task-info div {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.task-info div:last-child {
    margin-bottom: 0;
}

.task-info i {
    margin-right: 0.5rem;
    color: #a0aec0;
    font-size: 0.875rem;
}

/* 状态标签 */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-badge.enabled {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-badge.disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.2);
}

/* 调度器状态 */
.scheduler-item {
    padding: 0.5rem 0.625rem;
    border-left: 3px solid;
    border-left-color: #10b981;
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(209, 250, 229, 0.95) 100%);
    backdrop-filter: blur(10px);
    margin-bottom: 0.35rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.scheduler-item:nth-child(even) {
    background: linear-gradient(135deg, rgba(254, 249, 195, 0.95) 0%, rgba(254, 240, 138, 0.95) 100%);
    border-left-color: #f59e0b;
}

.scheduler-item:nth-child(3n) {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.95) 0%, rgba(254, 202, 202, 0.95) 100%);
    border-left-color: #ef4444;
}

.scheduler-item:hover {
    transform: translateX(4px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.98) 0%, rgba(187, 247, 208, 0.98) 100%);
}

.scheduler-item .job-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.8125rem;
    margin-bottom: 0.2rem;
}

.scheduler-item .job-time {
    font-size: 0.6875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.scheduler-item .job-time i {
    margin-right: 0.3rem;
    color: #9ca3af;
    font-size: 0.6875rem;
}

/* 统计卡片样式 */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.card-header {
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(226, 232, 240, 0.5) !important;
    padding: 1.5rem 1.75rem !important;
}

.card-body {
    padding: 1.25rem;
    max-height: none;
    overflow: visible;
}

.list-panel {
    transition: opacity 0.2s ease;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-success-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary-gradient:hover,
.btn-success-gradient:hover {
    transform: translateY(-2px);
    color: #fff;
}

.bg-success-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #fff;
}

.smart-switch {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    gap: 4px;
}

.smart-switch .btn {
    border-radius: 8px !important;
    border: none !important;
    padding: 0.5rem 1.25rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    color: #6b7280 !important;
}

.smart-switch .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.smart-switch .btn span {
    position: relative;
    z-index: 1;
}

.smart-switch .btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.smart-switch .btn.active::before {
    opacity: 0;
}

.smart-switch .btn:hover:not(.active) {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #6366f1 !important;
    transform: translateY(-1px);
}

.smart-switch .btn:active {
    transform: translateY(0);
}

.todo-toolbar {
    margin-bottom: 0.2rem;
    padding-bottom: 0.1rem;
}

.todo-toolbar hr {
    margin: 0.25rem 0 0.35rem;
    opacity: 0.1;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.todo-filter-group {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.todo-filter-group .btn {
    border-radius: 8px !important;
    border: none !important;
    padding: 0.5rem 1.25rem !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    color: #64748b !important;
}

.todo-filter-group .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.todo-filter-group .btn span {
    position: relative;
    z-index: 1;
}

/* 待处理 - 橙色/琥珀色渐变 */
.todo-filter-group .btn#todoFilterPending.active {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
    transform: translateY(-1px);
}

/* 已完成 - 绿色渐变 */
.todo-filter-group .btn#todoFilterCompleted.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}

/* 全部 - 蓝紫色渐变 */
.todo-filter-group .btn#todoFilterAll.active {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
}

.todo-filter-group .btn.active::before {
    opacity: 0;
}

.todo-filter-group .btn:hover:not(.active) {
    background: rgba(99, 102, 241, 0.08) !important;
    color: #6366f1 !important;
    transform: translateY(-1px);
}

.todo-filter-group .btn:active {
    transform: translateY(0);
}

.todo-card {
    border-left: 4px solid #10b981;
    position: relative;
    margin-bottom: 0.4rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.todo-card.priority-high {
    border-left-color: #ef4444;
}

.todo-card.priority-low {
    border-left-color: #0ea5e9;
}

.todo-card.completed {
    opacity: 0.65;
    border-left-color: #94a3b8;
}

.todo-card.overdue {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.95) 0%, rgba(254, 202, 202, 0.95) 100%) !important;
    border-left-color: #ef4444;
}

.todo-card .task-compact-content {
    width: 100%;
}

.todo-main {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
}

.todo-headline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.todo-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.todo-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #6b7280;
}

.todo-desc {
    flex: 1;
    min-width: 140px;
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.todo-remind {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    font-weight: 500;
    color: #4f46e5;
}

.todo-remind i {
    font-size: 0.85rem;
}

.todo-actions {
    margin-left: auto;
}

.todo-chip {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #4c1d95;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.todo-chip.high {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.25) 100%);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.35);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
    font-weight: 600;
}

.todo-chip.low {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 116, 144, 0.25) 100%);
    color: #0369a1;
    border: 1px solid rgba(14, 165, 233, 0.35);
}

.todo-status {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.3px;
    text-transform: none;
    color: #1e293b;
    background: rgba(148, 163, 184, 0.2);
}

.todo-status.pending {
    color: #b45309;
    background: rgba(251, 191, 36, 0.2);
}

.todo-status.reminded {
    color: #2563eb;
    background: rgba(59, 130, 246, 0.2);
}

.todo-status.done {
    color: #64748b;
    background: rgba(148, 163, 184, 0.3);
}

/* 任务列表容器滚动条美化 */
#tasksList::-webkit-scrollbar {
    width: 8px;
}

#tasksList::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 10px;
    margin: 4px 0;
}

#tasksList::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
}

#tasksList::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

/* 调度器状态滚动条美化 */
#schedulerStatus::-webkit-scrollbar {
    width: 6px;
}

#schedulerStatus::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 8px;
    margin: 4px 0;
}

#schedulerStatus::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
}

#schedulerStatus::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* 表单样式增强 */
.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.15);
    background-color: #fff;
    outline: none;
}

.form-control:hover,
.form-select:hover {
    border-color: #cbd5e0;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-text {
    font-size: 0.8125rem;
    color: #718096;
}

.form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.form-check-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

/* 模态框样式 */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-bottom: none;
    padding: 1.75rem;
    border-radius: 16px 16px 0 0;
}

.modal-header .modal-title {
    color: white;
    font-weight: 600;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 1.75rem;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1.25rem 1.75rem;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* 加载动画 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner-border {
    border-width: 3px;
}

.spinner-border.text-primary {
    border-color: rgba(99, 102, 241, 0.3);
    border-top-color: #6366f1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .task-header {
        flex-direction: column;
    }
    
    .task-actions {
        width: 100%;
    }
    
    .task-actions .btn {
        flex: 1;
    }
    
    .task-compact-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .task-name {
        min-width: 100px;
        max-width: 150px;
    }
    
    .task-next-time {
        margin-left: 0;
        order: 3;
        width: 100%;
        margin-top: 0.25rem;
    }
    
    .task-actions-inline {
        order: 4;
        width: 100%;
        justify-content: flex-end;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* Toast通知样式 */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1050;
}

/* 滚动条美化 */
.task-content::-webkit-scrollbar {
    width: 6px;
}

.task-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.task-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.task-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 紧凑任务卡片样式 */
.task-card-compact {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(219, 234, 254, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    margin-bottom: 0.3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(99, 102, 241, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid;
    border-left-color: #6366f1;
}

.task-card-compact:nth-child(even) {
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.95) 0%, rgba(233, 213, 255, 0.95) 100%);
    border-left-color: #8b5cf6;
}

.task-card-compact:nth-child(3n) {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.95) 0%, rgba(253, 230, 138, 0.95) 100%);
    border-left-color: #f59e0b;
}

.task-card-compact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.3);
    transform: translateX(4px) translateY(-1px);
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.98) 0%, rgba(199, 210, 254, 0.98) 100%);
}

.task-card-compact.disabled {
    opacity: 0.55;
    border-left-color: #cbd5e0;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(243, 244, 246, 0.9) 100%);
}

.task-compact-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* 简化的任务卡片样式（保留兼容） */
.task-card-simple {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
    border-left-color: #6366f1;
}

.task-card-simple:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateX(6px) translateY(-2px);
}

.task-card-simple.disabled {
    opacity: 0.6;
    border-left-color: #cbd5e0;
}

.task-simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.task-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.task-icon.enabled {
    color: #10b981;
}

.task-icon.disabled {
    color: #94a3b8;
}

.task-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-schedule-text {
    font-size: 0.8125rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.task-schedule-text i {
    font-size: 0.875rem;
}

.task-simple-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-icon:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-icon:active {
    transform: translateY(0);
}

.btn-icon:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-icon:disabled:hover {
    transform: none;
    background: #f7fafc;
}

.btn-icon.danger:hover {
    background: #fed7d7;
    color: #e53e3e;
}

.task-next-time {
    font-size: 0.8125rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.task-next-time i {
    font-size: 0.875rem;
}

/* 内联操作按钮 */
.task-actions-inline {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.btn-icon-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-icon-sm:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

.btn-icon-sm:active {
    transform: translateY(0);
}

.btn-icon-sm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-icon-sm:disabled:hover {
    transform: none;
    background: rgba(99, 102, 241, 0.1);
}

.btn-icon-sm.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-icon-sm.danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.task-card-simple {
    animation: fadeIn 0.3s ease;
}

.task-card-compact {
    animation: fadeIn 0.25s ease;
}

.card {
    animation: slideInRight 0.4s ease;
}

/* 为不同的卡片添加延迟 */
.col-lg-4 .card:nth-child(1) {
    animation-delay: 0.1s;
}

.col-lg-4 .card:nth-child(2) {
    animation-delay: 0.2s;
}

.col-lg-4 .card:nth-child(3) {
    animation-delay: 0.3s;
}

.col-lg-4 .card:nth-child(4) {
    animation-delay: 0.4s;
}

/* 知识库和会议记录样式 */
.bg-info-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
}

.btn-info-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
}

.btn-warning-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
}

.btn-secondary-gradient {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
}

.btn-info-gradient:hover,
.btn-warning-gradient:hover,
.btn-secondary-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 知识库卡片样式 */
#knowledgeList .card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#knowledgeList .card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

#knowledgeList .card-header {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-bottom: 2px solid #e5e7eb;
}

.doc-inline-toolbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding: 0.65rem 0.75rem;
    background: #f8fafc;
    border-radius: 0.6rem;
    border: 1px dashed #e2e8f0;
}

.doc-inline-gallery {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.doc-inline-photo {
    background: #fff;
    border-radius: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.doc-inline-photo img {
    width: 100%;
    border-radius: 0.65rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doc-inline-photo img:hover {
    transform: scale(1.01);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.25);
}

.doc-inline-photo figcaption {
    text-align: center;
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: #475569;
    font-style: italic;
}

    line-height: 1.6;
}

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-state i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* 会议记录紧凑卡片样式 */
.meeting-card-compact {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95) 0%, rgba(191, 219, 254, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    margin-bottom: 0.3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(59, 130, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid #3b82f6;
}

.meeting-card-compact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.3);
    transform: translateX(4px) translateY(-1px);
    background: linear-gradient(135deg, rgba(191, 219, 254, 0.98) 0%, rgba(147, 197, 253, 0.98) 100%);
}

#meetingsList .meeting-card-compact:nth-child(odd) {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95) 0%, rgba(191, 219, 254, 0.95) 100%);
    border-left-color: #3b82f6;
}

#meetingsList .meeting-card-compact:nth-child(even) {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(209, 250, 229, 0.95) 100%);
    border-left-color: #10b981;
}

.meeting-compact-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.meeting-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #3b82f6;
}

.meeting-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meeting-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
}

.meeting-info i {
    font-size: 0.875rem;
    color: #6b7280;
}

.meeting-content-text {
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.separator {
    color: #d1d5db;
    margin: 0 0.25rem;
}

.meeting-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* 知识库紧凑卡片样式 */
.knowledge-card-compact {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.95) 0%, rgba(253, 230, 138, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    margin-bottom: 0.3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(245, 158, 11, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid #f59e0b;
}

.knowledge-card-compact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(245, 158, 11, 0.3);
    transform: translateX(4px) translateY(-1px);
    background: linear-gradient(135deg, rgba(253, 230, 138, 0.98) 0%, rgba(252, 211, 77, 0.98) 100%);
}

#knowledgeItemsList .knowledge-card-compact:nth-child(odd) {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.95) 0%, rgba(253, 230, 138, 0.95) 100%);
    border-left-color: #f59e0b;
}

#knowledgeItemsList .knowledge-card-compact:nth-child(even) {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.95) 0%, rgba(254, 215, 170, 0.95) 100%);
    border-left-color: #fb923c;
}

.knowledge-compact-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.knowledge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #f59e0b;
}

.knowledge-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.knowledge-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
}

.knowledge-category,
.knowledge-problem,
.knowledge-solution {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.knowledge-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.knowledge-toolbar .btn-group {
    flex-wrap: wrap;
}

.knowledge-search {
    min-width: 220px;
}

.knowledge-search .input-group-text {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #6b7280;
}

.knowledge-search .form-control {
    border-color: #e5e7eb;
    box-shadow: none;
}

.knowledge-search .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.knowledge-form-row .form-label {
    font-weight: 600;
    color: #374151;
}

.knowledge-doc-modal {
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
}

.knowledge-doc-shell {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 1rem;
}

.knowledge-doc-wrapper {
    padding: 0;
}

.knowledge-doc-page {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    padding: 2.5rem 3rem;
    margin: 0 auto;
    max-width: 980px;
    font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
    counter-reset: docSection;
}

.knowledge-doc-title-block {
    margin-bottom: 1.75rem;
}

.doc-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #94a3b8;
    display: block;
    margin-bottom: 0.35rem;
}

.doc-title-input {
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    font-size: 1.45rem;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
}

.doc-title-input:focus {
    border-color: #f59e0b;
    box-shadow: none;
}

.doc-input {
    border-radius: 0.65rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.doc-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
    background: #fff;
}

.doc-hint {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.35rem;
}

.knowledge-doc-header-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.doc-meta-field {
    flex: 1 1 220px;
}

.doc-title-field {
    flex: 2 1 360px;
}

.doc-section {
    margin-bottom: 2rem;
    counter-increment: docSection;
}

.doc-section-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.85rem;
    position: relative;
    padding-left: 3.5rem;
}

.doc-section-heading::before {
    content: counter(docSection, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(249, 115, 22, 0.2);
    letter-spacing: 0.1em;
}

.doc-textarea {
    border-radius: 0.85rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    min-height: 220px;
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.6);
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 1.25rem 1.5rem;
    resize: vertical;
}

.doc-textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.doc-textarea.doc-solution {
    min-height: 520px;
}

.doc-textarea.doc-problem {
    min-height: 80px;
}

.doc-media-panel {
    background: #f8fafc;
    border-radius: 0.85rem;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
}

.doc-images-preview {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.doc-images-preview img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
    cursor: zoom-in;
}

.doc-files-list {
    margin-top: 1rem;
    border-top: 1px dashed #cbd5f5;
    padding-top: 0.75rem;
    font-size: 0.9rem;
}

.doc-files-list .file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px dotted #e2e8f0;
}

.doc-files-list .file-item:last-child {
    border-bottom: none;
}

.compact-textarea {
    min-height: 120px;
    resize: vertical;
}

.solution-editor {
    min-height: 220px;
    max-height: 420px;
    overflow-y: auto;
    resize: vertical;
    border-radius: 0.65rem;
}

.solution-editor::-webkit-scrollbar {
    width: 6px;
}

.solution-editor::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.4);
    border-radius: 999px;
}

.knowledge-modal-actions .btn {
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.knowledge-modal-actions .btn-primary {
    background: linear-gradient(120deg, #f59e0b, #f97316);
    border: none;
}

.btn-knowledge-save {
    background: linear-gradient(130deg, #0ea5e9, #2563eb);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-knowledge-save:hover {
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.knowledge-modal-actions .btn-light {
    color: #374151;
}

@media (max-width: 767.98px) {
    .knowledge-modal-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .knowledge-doc-page {
        padding: 1.75rem 1.2rem;
    }

    .doc-section-heading {
        padding-left: 2.8rem;
    }

    .knowledge-doc-header-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.knowledge-tags {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.knowledge-tags .badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
}

.knowledge-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* 紧凑按钮样式 */
.btn-compact {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-compact:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-compact.btn-primary {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.btn-compact.btn-primary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-compact.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-compact.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

/* 响应式：会议记录和知识库卡片 */
@media (max-width: 768px) {
    .meeting-compact-content,
    .knowledge-compact-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .meeting-title,
    .knowledge-title {
        min-width: 100px;
        max-width: 150px;
    }
    
    .meeting-info,
    .knowledge-info {
        flex: 1 1 100%;
        order: 3;
        font-size: 0.75rem;
    }
    
    .meeting-actions,
    .knowledge-actions {
        margin-left: 0;
        order: 2;
    }
    
    .meeting-content-text,
    .knowledge-problem,
    .knowledge-solution {
        max-width: 200px;
    }
    
    .knowledge-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .knowledge-search {
        width: 100%;
    }
}

