*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --accent: #6c63ff;
    --accent-hover: #5a52d5;
    --accent-glow: rgba(108, 99, 255, 0.3);
    --text-primary: #e8e8f0;
    --text-secondary: #9ca3af;
    --border: #2a2a4a;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(108, 99, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 0; pointer-events: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

header { text-align: center; margin-bottom: 32px; }

header h1 {
    font-size: 2.5rem; font-weight: 700;
    background: linear-gradient(135deg, #6c63ff, #a78bfa, #6c63ff);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
    margin-bottom: 8px;
}

header p { color: var(--text-secondary); font-size: 1.05rem; }

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tab-bar {
    display: flex;
    gap: 4px;
    background: var(--bg-secondary);
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.tab-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    position: relative;
}

.tab-btn:hover { color: var(--text-primary); background: rgba(108, 99, 255, 0.08); }

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.tab-btn .tab-emoji { margin-right: 6px; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.3s ease; }

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-zone::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(108,99,255,0.05), transparent);
    opacity: 0; transition: opacity 0.3s;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

.upload-zone:hover::before, .upload-zone.dragover::before { opacity: 1; }

.upload-icon {
    width: 80px; height: 120px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; transition: transform 0.3s;
}

.upload-zone:hover .upload-icon { transform: translateY(-4px) scale(1.05); }

.upload-zone h2 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 600; }
.upload-zone p { color: var(--text-secondary); font-size: 0.9rem; }
.upload-zone .browse-link { color: var(--accent); text-decoration: underline; cursor: pointer; font-weight: 500; }

input[type="file"] { display: none; }

.upload-tab-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.upload-tab-selector label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
}

.upload-tab-selector input[type="radio"] { display: none; }

.upload-tab-selector input[type="radio"]:checked + label {
    border-color: var(--accent);
    background: rgba(108, 99, 255, 0.15);
    color: #fff;
}

.upload-tab-selector label:hover {
    border-color: var(--accent);
}

.file-preview {
    display: none; margin-top: 24px;
    background: var(--bg-card); border-radius: 16px;
    padding: 24px; border: 1px solid var(--border);
}

.file-preview.show { display: block; animation: fadeInUp 0.3s ease; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.file-list-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

.file-list-header h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); }
.file-list-header span { font-size: 0.85rem; color: var(--accent); }

.pending-file {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pending-file:last-child { border-bottom: none; }

.pending-file .pf-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}

.pending-file .row-thumb {
    width: 64px; height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-card);
}

.pending-file .pf-info { flex: 1; min-width: 0; }
.pending-file .pf-name {
    font-size: 0.9rem; font-weight: 500;
    word-break: break-word;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.pending-file .pf-size { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }

.pending-file .pf-remove {
    width: 32px; height: 32px; border: none; border-radius: 8px;
    background: rgba(239, 68, 68, 0.15); color: var(--error);
    cursor: pointer; font-size: 16px; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}

.pending-file .pf-remove:hover { background: rgba(239, 68, 68, 0.3); }

.progress-wrapper { display: none; margin-top: 16px; }
.progress-wrapper.show { display: block; animation: fadeInUp 0.3s ease; }

.progress-bar-track {
    width: 100%; height: 8px;
    background: var(--bg-primary); border-radius: 999px; overflow: hidden;
}

.progress-bar-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--accent), #a78bfa);
    border-radius: 999px; transition: width 0.3s ease;
}

.progress-text {
    display: flex; justify-content: space-between;
    margin-top: 8px; font-size: 0.85rem; color: var(--text-secondary);
}

.btn-upload {
    width: 100%; padding: 14px 32px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: #fff; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
    margin-top: 16px;
}

.btn-upload:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-upload:disabled { opacity: 0.5; cursor: not-allowed; }

.toast {
    position: fixed; top: 24px; right: 24px;
    padding: 16px 24px; border-radius: 12px;
    font-size: 0.9rem; font-weight: 500; z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 380px; box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.toast.show { transform: translateX(0); }
.toast.success { background: var(--success); color: #fff; }
.toast.error { background: var(--error); color: #fff; }

.video-list-section { margin-top: 32px; }

.video-list-section h2 {
    font-size: 1.3rem; margin-bottom: 20px; font-weight: 600;
    display: flex; align-items: center; gap: 10px;
}

.video-list-section h2 .count {
    background: var(--accent); color: #fff;
    font-size: 0.75rem; padding: 2px 10px; border-radius: 999px;
}

.video-list {
    display: flex; flex-direction: column; gap: 8px;
}

.video-row {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-secondary); border: 1px solid var(--border);
    border-radius: 12px; padding: 14px 18px;
    transition: all 0.3s; animation: fadeInUp 0.3s ease;
}

.video-row:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-row .row-stt {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
    color: #fff;
}

.video-row .row-thumb {
    width: 80px; height: 120px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-card);
}

.video-row .row-thumb-placeholder {
    width: 80px; height: 120px;
    background: rgba(108, 99, 255, 0.15); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}

.row-thumb-srt {
    width: 80px; height: 120px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
}

.video-row .row-info { flex: 1; min-width: 0; }
.video-row .row-name {
    font-weight: 600; font-size: 0.9rem;
    word-break: break-word;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.video-row .row-meta { color: var(--text-secondary); font-size: 0.8rem; margin-top: 2px; }

.video-row .row-actions { display: flex; gap: 8px; flex-shrink: 0; }

.btn-action {
    padding: 8px 16px; border: none; border-radius: 8px;
    font-size: 0.8rem; font-weight: 500; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
    display: flex; align-items: center; gap: 5px;
}

.btn-download {
    background: rgba(16, 185, 129, 0.15); color: var(--success);
}
.btn-download:hover { background: rgba(16, 185, 129, 0.3); }

.btn-delete {
    background: rgba(239, 68, 68, 0.15); color: var(--error);
}
.btn-delete:hover { background: rgba(239, 68, 68, 0.3); }

.btn-delete.confirming {
    background: var(--error); color: #fff;
    animation: pulse 1s ease infinite;
}

.btn-rename-all {
    padding: 10px 20px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px;
}

.btn-rename-all:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-rename-all:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-delete-all {
    padding: 10px 20px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px;
}

.btn-delete-all:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-delete-all:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tt-toolbar {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
    margin-bottom: 20px;
}
.tt-toolbar input {
    flex: 1; min-width: 200px;
    padding: 12px 16px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--bg-secondary);
    color: var(--text-primary); font-size: 0.95rem; font-family: inherit;
}
.tt-toolbar input:focus { outline: none; border-color: var(--accent); }
.tt-toolbar input::placeholder { color: var(--text-secondary); }

.btn-fetch {
    padding: 12px 24px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, #fe2c55, #ff5e7e);
    color: #fff; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-fetch:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4);
}
.btn-fetch:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-refresh-tt {
    padding: 10px 18px; border: none; border-radius: 10px;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    color: #fff; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.btn-refresh-tt:hover { transform: translateY(-1px); box-shadow: 0 4px 15px var(--accent-glow); }
.btn-refresh-tt:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.tt-sort-bar { display: flex; gap: 8px; margin-bottom: 12px; }
.tt-sort-btn {
    padding: 8px 16px; border: 1px solid var(--border); border-radius: 9px;
    background: var(--bg-secondary); color: var(--text-secondary);
    font-size: 0.82rem; font-weight: 500; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
    display: inline-flex; align-items: center; gap: 5px;
}
.tt-sort-btn:hover { border-color: var(--accent); color: var(--text-primary); }
.tt-sort-btn.active {
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    border-color: transparent; color: #fff;
}

.tt-channel-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px; margin-bottom: 20px;
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.tt-channel-card .tt-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #fe2c55, #6c63ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
}
.tt-channel-card .tt-ch-info { flex: 1; min-width: 0; }
.tt-channel-card .tt-ch-name { font-size: 1.15rem; font-weight: 700; }
.btn-edit-name {
    border: none; background: transparent; cursor: pointer;
    color: var(--text-secondary); font-size: 0.9rem; padding: 0 4px;
    transition: color 0.2s; vertical-align: middle;
}
.btn-edit-name:hover { color: var(--accent); }
.tt-open-ch {
    color: var(--accent); text-decoration: none; font-size: 0.8rem;
    vertical-align: middle; transition: opacity 0.2s;
}
.tt-open-ch:hover { opacity: 0.7; }
.tt-channel-card .tt-ch-meta { color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px; }
.tt-channel-card .tt-ch-desc {
    font-size: 0.85rem; color: var(--text-secondary); margin-top: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.tt-table-wrap {
    background: var(--bg-secondary); border: 1px solid var(--border);
    border-radius: 14px; overflow-x: auto;
}
table.tt-table {
    width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 700px;
}
table.tt-table th, table.tt-table td {
    padding: 12px 14px; text-align: left;
    border-bottom: 1px solid var(--border); white-space: nowrap;
}
table.tt-table th {
    color: var(--text-secondary); font-weight: 600; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.4px;
    position: sticky; top: 0; background: var(--bg-secondary); z-index: 1;
}
table.tt-table tr:last-child td { border-bottom: none; }
table.tt-table tbody tr { transition: background 0.2s; }
table.tt-table tbody tr:hover { background: rgba(108, 99, 255, 0.08); }
table.tt-table td.tt-title-cell {
    white-space: normal; word-break: break-word; max-width: 320px;
}
table.tt-table .tt-num {
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff;
}

.tt-loading {
    text-align: center; padding: 50px 20px; color: var(--text-secondary);
}
.tt-spinner {
    width: 40px; height: 40px; border: 4px solid var(--border);
    border-top-color: var(--accent); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tt-followed-title {
    font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.4px;
}
.tt-follow-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px; margin-bottom: 24px;
}
.tt-follow-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 14px; cursor: pointer;
    transition: all 0.25s; position: relative;
}
.tt-follow-card:hover {
    border-color: var(--accent); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.tt-follow-card .tt-fc-name {
    font-weight: 600; font-size: 0.92rem; word-break: break-all;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
    padding-right: 26px;
}
.tt-follow-card .tt-fc-meta { color: var(--text-secondary); font-size: 0.78rem; margin-top: 6px; }
.tt-follow-card .tt-fc-remove {
    position: absolute; top: 8px; right: 8px;
    width: 24px; height: 24px; border: none; border-radius: 6px;
    background: rgba(239, 68, 68, 0.15); color: var(--error);
    cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.tt-follow-card .tt-fc-remove:hover { background: rgba(239, 68, 68, 0.35); }


.empty-state {
    text-align: center; padding: 40px; color: var(--text-secondary);
}

.empty-state .emoji { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }

.server-status {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 10px;
    font-size: 0.85rem; margin-bottom: 20px;
    transition: all 0.3s;
}

.server-status.online {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.server-status.offline {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

.server-status .status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    animation: blink 2s ease infinite;
}

.server-status.online .status-dot { background: var(--success); }
.server-status.offline .status-dot { background: var(--error); }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.confirm-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 999;
    align-items: center; justify-content: center;
}

.confirm-overlay.show { display: flex; }

.confirm-box {
    background: var(--bg-secondary); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; max-width: 400px; width: 90%;
    text-align: center; animation: fadeInUp 0.2s ease;
}

.confirm-box h3 { margin-bottom: 8px; font-size: 1.1rem; }
.confirm-box p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; word-break: break-all; }

.confirm-box .btn-row { display: flex; gap: 10px; justify-content: center; }

.confirm-box .btn-cancel {
    padding: 10px 24px; border: 1px solid var(--border); border-radius: 10px;
    background: transparent; color: var(--text-primary);
    font-size: 0.9rem; cursor: pointer; font-family: inherit;
}

.confirm-box .btn-confirm-del {
    padding: 10px 24px; border: none; border-radius: 10px;
    background: var(--error); color: #fff;
    font-size: 0.9rem; cursor: pointer; font-family: inherit;
}

@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
    .upload-zone { padding: 40px 20px; }
    .container { padding: 24px 16px; }
    .video-row { flex-wrap: wrap; }
    .video-row .row-actions { width: 100%; justify-content: flex-end; margin-top: 8px; }
    .tab-btn { padding: 12px 10px; font-size: 0.85rem; }

    /* TikTok toolbar */
    .tt-toolbar { gap: 8px; }
    .tt-toolbar input { min-width: 0; font-size: 0.9rem; padding: 10px 12px; }
    .tt-toolbar input[type="number"] { flex: 0 0 100%; }
    .btn-fetch { width: 100%; justify-content: center; }

    /* Channel card */
    .tt-channel-card { padding: 16px; gap: 12px; }
    .tt-channel-card .tt-avatar { width: 48px; height: 48px; font-size: 22px; }
    .tt-channel-card .tt-ch-name {
        font-size: 1rem;
        display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
    }
    .tt-channel-card .tt-ch-meta { font-size: 0.78rem; }
    .tt-channel-card .tt-ch-desc { -webkit-line-clamp: 1; }
    .btn-refresh-tt { width: 100%; justify-content: center; margin-top: 4px; }

    /* Followed cards grid: cuộn ngang trên mobile */
    .tt-follow-grid {
        display: flex; overflow-x: auto; gap: 10px;
        padding-bottom: 8px; margin-bottom: 20px;
        scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; -ms-overflow-style: none;
    }
    .tt-follow-grid::-webkit-scrollbar { display: none; }
    .tt-follow-grid .tt-follow-card {
        flex: 0 0 75%; scroll-snap-align: start;
    }

    /* Table */
    .tt-table-wrap { border-radius: 12px; }
    table.tt-table { font-size: 0.74rem; min-width: 0; width: 100%; }
    table.tt-table th, table.tt-table td { padding: 7px 6px; white-space: nowrap; }
    table.tt-table th { font-size: 0.66rem; letter-spacing: 0.2px; }
    table.tt-table td.tt-title-cell { max-width: 52vw; white-space: normal; word-break: break-word; }
    table.tt-table .tt-num { width: 22px; height: 22px; font-size: 0.68rem; }
    table.tt-table td.tt-view-cell { font-size: 0.7rem; }
}

@media (max-width: 380px) {
    .tt-follow-grid .tt-follow-card { flex: 0 0 82%; }
    table.tt-table { font-size: 0.68rem; }
    table.tt-table th, table.tt-table td { padding: 6px 4px; }
    table.tt-table td.tt-title-cell { max-width: 48vw; white-space: normal; word-break: break-word; }
    table.tt-table td.tt-view-cell { font-size: 0.64rem; }
}
