/* ===== 全局布局（与 generate_video 一致） ===== */
        /* ===== 全局样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
}
:root {
    --dark-bg: #0e0e0e;
    --panel-bg: #141414;
    --panel-bg-hover: #1e1e1e;
    --accent-warm: #f8a8b8;
    --accent-green: #d8e878;
    --text-primary: #f8f8f8;
    --text-secondary: #c8c8c8;
    --text-tertiary: #888888;
    --border-color: #2a2a2a;
    --input-bg: #1a1a1a;
    --input-border: #333333;
    --module-gap: 16px;
    --module-radius: 12px;
    --btn-gradient: linear-gradient(90deg, #f8a8b8 0%, #d8e878 100%);
    --border-gradient: linear-gradient(90deg, #f8a8b8, #d8e878);
    --light-flow-gradient: linear-gradient(90deg, transparent, rgba(248, 168, 184, 0.15), rgba(216, 232, 120, 0.2), rgba(248, 168, 184, 0.15), transparent);
    --neon-shadow: 0 0 8px rgba(248, 168, 184, 0.6), 0 0 12px rgba(216, 232, 120, 0.4);
    --module-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0e0e0e;
    color: #f8f8f8;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    height: 100vh;
}
        .main-content-wrapper {
            flex: 1;
            height: 100vh;
            overflow-y: auto;
            padding: 12px;
            box-sizing: border-box;
            background: #0e0e0e;
        }
        .content-container {
            display: flex;
            gap: 12px;
            margin: 0 auto;
            height: 100%;
        }
        .left-center-wrapper {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .top-row {
            display: flex;
            gap: 12px;
            flex: 1;
            min-height: 0;
        }
        .operation-panel {
            flex: 1.2;
            min-width: 0;
            background: rgba(20, 20, 20, 0.55);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
        }
        .operation-panel .panel-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .operation-panel .panel-desc {
            color: #c8c8c8;
            font-size: 14px;
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-label {
            display: block;
            font-weight: 600;
            color: #c8c8c8;
            margin-bottom: 6px;
            font-size: 14px;
        }
        .form-input {
            width: 96%;
            padding: 10px 14px;
            background: rgba(0,0,0,0.25);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 12px;
            color: #f8f8f8;
            font-size: 14px;
            outline: none;
            transition: 0.35s cubic-bezier(0.4,0,0.2,1);
        }
        .form-input:focus {
            border-color: #f8a8b8;
            box-shadow: 0 0 0 4px rgba(248,168,184,0.08);
        }
        .form-input::placeholder {
            color: #888888;
        }
        .char-count {
            text-align: right;
            font-size: 12px;
            color: #888888;
            margin-top: 4px;
        }
        .char-count .cost {
            color: #d8e878;
            font-weight: 500;
        }
        .cost-preview {
            text-align: center;
            font-size: 14px;
            color: #d8e878;
            padding: 8px 0;
            background: rgba(216,232,120,0.05);
            border-radius: 8px;
            margin: 16px 0 20px;
        }
        .generate-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #f8a8b8, #d8e878);
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            box-shadow: 0 4px 25px rgba(248,168,184,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .generate-btn:hover:not(:disabled) {
            transform: translateY(-2px);
          
        }
        .generate-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }
        .generate-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(26,26,26,0.2);
            border-top-color: #1a1a1a;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        .generate-btn.loading .spinner {
            display: block;
        }
        .generate-btn.loading .btn-text {
            display: none;
        }
@keyframes
spin {
            to { transform: rotate(360deg); }
        }
        .result-panel {
            flex: 1;
            min-width: 0;
            background: rgba(20, 20, 20, 0.55);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .result-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .badge {
            font-size: 12px;
            padding: 4px 14px;
            border-radius: 20px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.04);
            color: #c8c8c8;
        }
        .placeholder-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            color: #888888;
            flex: 1;
        }
        .placeholder-state .placeholder-icon {
            font-size: 56px;
            opacity: 0.3;
            margin-bottom: 16px;
        }
        .placeholder-state h3 {
            font-size: 20px;
            font-weight: 600;
            color: #c8c8c8;
            margin-bottom: 8px;
        }
        .placeholder-state p {
            font-size: 14px;
        }
        .generating-state {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            flex: 1;
        }
        .generating-state.show {
            display: flex;
        }
        .generating-state .pulse-ring {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid rgba(248,168,184,0.1);
            border-top-color: #f8a8b8;
            animation: spin 1s linear infinite;
            margin-bottom: 16px;
        }
        .generating-state .gen-text {
            font-size: 16px;
            color: #c8c8c8;
        }
        .dub-result {
            display: none;
            flex: 1;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .dub-result.show {
            display: flex;
        }
        .dub-result audio {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
        }
        .dub-result .download-area {
            display: flex;
            gap: 12px;
        }
        .dub-result .download-area .btn-download {
            padding: 8px 28px;
            border: none;
            border-radius: 30px;
            font-weight: 500;
            background: linear-gradient(135deg, #f8a8b8, #d8e878);
            color: #1a1a1a;
            cursor: pointer;
            transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            font-family: inherit;
        }
        .dub-result .download-area .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(248,168,184,0.3);
        }
        .dub-result .download-area .btn-download:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }
        .error-msg {
            padding: 16px;
            background: rgba(248,113,113,0.06);
            border: 1px solid rgba(248,113,113,0.15);
            border-radius: 12px;
            color: #f87171;
            text-align: center;
            margin-top: 16px;
        }
        .info-panel {
            width: 280px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow-y: auto;
        }
        .info-card, .history-card {
            background: rgba(20, 20, 20, 0.55);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
        }
        .info-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #f8f8f8;
        }
        .info-item {
            margin-bottom: 8px;
        }
        .info-label {
            display: block;
            font-size: 11px;
            color: #888888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .info-value {
            font-size: 14px;
            color: #f8f8f8;
            word-break: break-word;
        }
        .copy-btn {
            padding: 6px 16px;
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 30px;
            background: transparent;
            color: #c8c8c8;
            cursor: pointer;
            transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            font-size: 12px;
        }
        .copy-btn:hover {
            border-color: #d8e878;
            color: #f8f8f8;
        }
        .history-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .history-more {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #c8c8c8;
            font-size: 13px;
            transition: 0.35s cubic-bezier(0.4,0,0.2,1);
        }
        .history-more:hover {
            color: #f8f8f8;
        }
        .history-empty {
            text-align: center;
            color: #888888;
            padding: 20px 0;
            font-size: 14px;
        }
        .history-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .history-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .history-item:last-child {
            border-bottom: none;
        }
        .history-text {
            flex: 1;
            min-width: 0;
        }
        .history-desc {
            font-size: 12px;
            color: #c8c8c8;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .history-time {
            font-size: 10px;
            color: #888888;
        }
        .history-thumbs {
            display: flex;
            gap: 4px;
            flex-shrink: 0;
        }
        .thumb-wrap {
            width: 40px;
            height: 40px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.04);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.3);
            color: #888888;
            font-size: 12px;
        }
        .thumb-wrap i {
            font-size: 18px;
        }
        .clear-btn {
            margin-top: 12px;
            padding: 6px 16px;
            border: 1px solid rgba(248,113,113,0.1);
            border-radius: 30px;
            background: rgba(248,113,113,0.04);
            color: #f87171;
            cursor: pointer;
            font-size: 12px;
            transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            width: 100%;
        }
        .clear-btn:hover {
            background: rgba(248,113,113,0.08);
        }
        .footer {
            text-align: center;
            font-size: 12px;
            color: #888888;
            padding: 16px 0;
            border-top: 1px solid rgba(255,255,255,0.04);
            margin-top: 16px;
            flex-shrink: 0;
        }
        /* Toast */
        .toast {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: rgba(20,20,20,0.85);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 10px 24px;
            border-radius: 14px;
            color: #f8f8f8;
            font-size: 13px;
            z-index: 999;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            pointer-events: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }
        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .toast .toast-icon { margin-right: 8px; }
        /* ===== 自定义下拉选择器 ===== */
        .custom-select-wrapper {
            position: relative;
            width: 100%;
        }
        .custom-select-wrapper .form-input {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
        }
        .custom-select-dropdown {
            /*position: absolute;*/
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: #1a1a1a;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            z-index: 1000;
            display: none;
            max-height: 300px;
            overflow: hidden;
            flex-direction: column;
            backdrop-filter: blur(20px);
            padding: 20px;
        }
        .custom-select-dropdown.open {
            display: flex;
        }
        .custom-select-search {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            flex-shrink: 0;
        }
        .custom-select-search input {
            width: 92%;
            padding: 8px 12px;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            color: #f8f8f8;
            font-size: 13px;
            outline: none;
        }
        .custom-select-search input:focus {
            border-color: #f8a8b8;
        }
        .custom-select-options {
            flex: 1;
            overflow-y: auto;
            max-height: 240px;
        }
        .custom-select-options .option-item {
            padding: 8px 16px;
            cursor: pointer;
            color: #c8c8c8;
            font-size: 14px;
            transition: 0.2s;
        }
        .custom-select-options .option-item:hover {
            background: rgba(248,168,184,0.12);
            color: #f8f8f8;
        }
        .custom-select-options .option-item.selected {
            background: rgba(248,168,184,0.15);
            color: #f8a8b8;
        }
        .custom-select-options .option-item.no-result {
            color: #888888;
            cursor: default;
            text-align: center;
        }
        .custom-select-options .option-item.no-result:hover {
            background: transparent;
        }
@media
(max-width: 1024px) {
            .content-container { flex-direction: column; }
            .info-panel { width: 100%; flex-direction: row; flex-wrap: wrap; }
            .info-panel > * { flex: 1; min-width: 200px; }
            .top-row { flex-direction: column; }
        }
@media
(max-width: 768px) {
            .main-content-wrapper {padding: 50px 16px 16px 16px; }
            .operation-panel, .result-panel { padding: 16px; }
            .info-panel { flex-direction: column; }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
  /* 与图片生成保持一致的右侧栏样式 */
        .info-panel {
            width: 310px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-right: 2px;
        }
        .info-panel::-webkit-scrollbar { display: none; }
        .creation-card {
            border-radius: 12px;
            padding: 18px 16px 16px;
            background-color: var(--panel-bg);
        }
        .creation-card .card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }
        .creation-card .card-header .header-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f8a8b8, #d8e878);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: #1a1a1a;
            flex-shrink: 0;
        }
        .creation-card .card-header .header-title {
            font-size: 15px;
            font-weight: 600;
            color: #f8f8f8;
            letter-spacing: 0.3px;
        }
        .creation-card .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 14px;
            margin-bottom: 14px;
        }
        .creation-card .info-grid .info-item {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .creation-card .info-grid .info-item.full-width {
            grid-column: 1 / -1;
        }
        .creation-card .info-grid .info-item .info-label {
            font-size: 11px;
            color: #c8c8c8;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 0.2px;
        }
        .creation-card .info-grid .info-item .info-value {
            font-size: 13px;
            color: #f8f8f8;
            font-weight: 400;
            line-height: 1.5;
        }
        .creation-card .info-grid .info-item .info-value.prompt-value {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .creation-card .info-grid .info-item .info-value .expand-btn {
            font-size: 11px;
            color: #f8a8b8;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            font-family: inherit;
            opacity: 0.7;
            transition: opacity 0.2s;
            flex-shrink: 0;
            white-space: nowrap;
        }
        .creation-card .info-grid .info-item .info-value .expand-btn:hover {
            opacity: 1;
        }
        .creation-card .info-grid .info-item .info-value .empty-state {
            color: #888888;
            font-style: normal;
        }
        .creation-card .copy-btn {
            width: 100%;
            padding: 8px;
            background: rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            color: #c8c8c8;
            cursor: pointer;
            font-size: 13px;
            font-family: inherit;
            transition: all 0.2s ease;
        }
        .creation-card .copy-btn:hover {
            background: rgba(248,168,184,0.06);
            border-color: rgba(248,168,184,0.15);
            color: #f8f8f8;
        }
        .task-card {
            background-color: var(--panel-bg);
            border-radius: 12px;
            padding: 18px 16px 14px;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
        }
        .task-card .card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .task-card .card-header .header-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, #f8a8b8, #d8e878);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: #1a1a1a;
            flex-shrink: 0;
        }
        .task-card .card-header .header-title {
            font-size: 15px;
            font-weight: 600;
            color: #f8f8f8;
            letter-spacing: 0.3px;
        }
        .task-card .card-header .header-stats {
            margin-left: auto;
            font-size: 12px;
            color: #c8c8c8;
            background: rgba(255, 255, 255, 0.04);
            padding: 3px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .task-card .task-list-container {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 4px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.2) transparent;
            padding-top: 10px;
        }
        .task-card .task-list-container::-webkit-scrollbar {
            width: 4px;
        }
        .task-card .task-list-container::-webkit-scrollbar-track {
            background: transparent;
        }
        .task-card .task-list-container::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.2);
            border-radius: 8px;
        }
        .task-card .task-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-bottom: 4px;
        }
        .task-card .task-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            border-bottom: 1px solid var(--input-border);
            margin-bottom: 10px;
        }
        .task-card .task-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .task-card .task-item.active-task {
            background: rgba(248,168,184,0.1);
        }
        .task-card .task-item .task-thumb {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: #1e1e1e;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888888;
            font-size: 13px;
            overflow: hidden;
        }
        .task-card .task-item .task-thumb.has-media i {
            font-size: 18px;
        }
        .task-card .task-item .task-body {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .task-card .task-item .task-body .task-name {
            font-size: 13px;
            color: #f8f8f8;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 130px;
            line-height: 1.4;
        }
        .task-card .task-item .task-body .task-status-row {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .task-card .task-item .task-body .task-status-row .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .task-card .task-item .task-body .task-status-row .status-dot.queued {
            background: #F59E0B;
            box-shadow: 0 0 4px rgba(245, 158, 11, 0.4);
        }
        .task-card .task-item .task-body .task-status-row .status-dot.processing {
            background: #f8a8b8;
            box-shadow: 0 0 4px rgba(248,168,184,0.4);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        .task-card .task-item .task-body .task-status-row .status-dot.completed {
            background: #d8e878;
            box-shadow: 0 0 4px rgba(216,232,120,0.4);
        }
        .task-card .task-item .task-body .task-status-row .status-dot.failed {
            background: #F87171;
            box-shadow: 0 0 4px rgba(248, 113, 113, 0.4);
        }
@keyframes
pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .task-card .task-item .task-body .task-status-row .status-text {
            font-size: 12px;
            color: #c8c8c8;
        }
        .task-card .task-item .task-body .task-status-row .status-progress {
            font-size: 11px;
            color: #888888;
            margin-left: auto;
        }
        .task-card .task-item .task-time {
            font-size: 11px;
            color: #888888;
            flex-shrink: 0;
            font-family: 'SF Mono', 'Consolas', monospace;
            letter-spacing: 0.3px;
        }
        .task-card .view-all-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 9px 0;
            background: rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            color: #c8c8c8;
            font-size: 13px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
            margin-top: 10px;
        }
        .task-card .view-all-btn:hover {
            background: rgba(248,168,184,0.06);
            border-color: rgba(248,168,184,0.15);
            color: #f8f8f8;
        }
        .task-card .view-all-btn i {
            font-size: 11px;
            transition: transform 0.2s;
        }
        .task-card .view-all-btn:hover i {
            transform: translateX(2px);
        }
        .task-card .empty-state {
            text-align: center;
            padding: 20px 0;
            color: #888888;
            font-size: 13px;
        }
        /* 移动端响应式 */
@media
(max-width: 768px) {
            .info-panel {
                width: 100% !important;
                padding: 0 8px 12px !important;
                gap: 12px !important;
                overflow-y: visible !important;
                max-height: none !important;
            }
            .creation-card {
                padding: 14px 12px !important;
            }
            .creation-card .info-grid {
                grid-template-columns: 1fr !important;
                gap: 8px 0 !important;
            }
            .creation-card .info-grid .info-item.full-width {
                grid-column: 1 !important;
            }
            .creation-card .info-grid .info-item .info-label {
                font-size: 10px !important;
            }
            .creation-card .info-grid .info-item .info-value {
                font-size: 12px !important;
            }
            .creation-card .copy-btn {
                font-size: 12px !important;
                padding: 6px !important;
            }
            .task-card {
                padding: 14px 12px !important;
                min-height: 200px !important;
                max-height: 50vh !important;
            }
            .task-card .card-header .header-title {
                font-size: 14px !important;
            }
            .task-card .card-header .header-stats {
                font-size: 11px !important;
                padding: 2px 10px !important;
            }
            .task-card .task-item {
                padding: 6px 8px !important;
                gap: 8px !important;
            }
            .task-card .task-item .task-thumb {
                width: 28px !important;
                height: 28px !important;
                font-size: 11px !important;
            }
            .task-card .task-item .task-body .task-name {
                font-size: 12px !important;
                max-width: 100px !important;
            }
            .task-card .task-item .task-body .task-status-row .status-text {
                font-size: 11px !important;
            }
            .task-card .task-item .task-body .task-status-row .status-progress {
                font-size: 10px !important;
            }
            .task-card .task-item .task-time {
                font-size: 10px !important;
            }
            .task-card .view-all-btn {
                font-size: 12px !important;
                padding: 7px 0 !important;
                margin-top: 8px !important;
            }
            .task-card .empty-state {
                font-size: 12px !important;
                padding: 16px 0 !important;
            }
        }