/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #0f0f0f;
    color: #f1f1f1;
    min-height: 100vh;
}

.url-import-card {
    max-width: 760px;
    margin: 22px auto 0;
    padding: 18px;
    border: 1px solid #303030;
    border-radius: 14px;
    background: linear-gradient(145deg, #1b1b1b, #151515);
}

.url-import-heading,
.url-import-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.url-import-heading {
    justify-content: space-between;
    margin-bottom: 14px;
}

.url-import-heading div {
    display: grid;
    gap: 4px;
}

.url-import-heading strong {
    font-size: 16px;
}

.url-import-heading span,
.url-import-note {
    color: #aaa;
    font-size: 13px;
}

.url-import-rights {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 12px;
    color: #ddd;
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
}

.url-import-rights input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: #3ea6ff;
}

.url-import-badge {
    padding: 5px 9px;
    color: #3ea6ff !important;
    border: 1px solid #285b7e;
    border-radius: 999px;
    background: #102535;
    font-weight: 700;
}

.url-import-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 13px;
    color: #f1f1f1;
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 9px;
    font-size: 14px;
}

.url-import-form input:focus {
    outline: none;
    border-color: #3ea6ff;
    box-shadow: 0 0 0 2px rgba(62, 166, 255, .16);
}

.url-import-form button {
    height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 9px;
    color: #0f0f0f;
    background: #3ea6ff;
    font-weight: 700;
    cursor: pointer;
}

.url-import-form button:disabled {
    opacity: .65;
    cursor: wait;
}

.url-import-result {
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 9px;
    background: #242424;
    color: #ddd;
    font-size: 14px;
}

.url-import-thumbnail {
    display: block;
    width: 160px;
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.url-import-result.is-error {
    color: #ffb4ab;
    background: #351918;
}

.url-import-note {
    margin-top: 11px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .url-import-form {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Top Navigation Bar */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 56px;
    background-color: #0f0f0f;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

/* Left Section */
.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: #f1f1f1;
    border-radius: 2px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 24px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Center Section */
.nav-center {
    flex: 1;
    max-width: 640px;
    display: flex;
    justify-content: center;
}

.search-container {
    display: flex;
    width: 100%;
    max-width: 580px;
}

.search-input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    background-color: #121212;
    border: 1px solid #303030;
    border-radius: 40px 0 0 40px;
    color: #f1f1f1;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: #3ea6ff;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    width: 64px;
    height: 40px;
    background-color: #222;
    border: 1px solid #303030;
    border-left: none;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
    font-size: 16px;
}

.search-btn:hover {
    background-color: #333;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.2s;
}

.icon-btn:hover {
    background-color: #272727;
}

.btn-icon {
    font-size: 20px;
}

/* --- CREATE BUTTON STYLES (UPDATED) --- */
.create-btn {
    width: auto;
    padding: 0 12px;
    border-radius: 20px;
    gap: 8px;
    /* Always show a subtle "active" background to indicate it's interactive */
    background-color: #272727; 
    transition: all 0.2s ease;
}

/* Force Create Button Text and Icon to White */
.create-btn .btn-text,
.create-btn .btn-icon {
    color: #ffffff !important;
}

/* Special Hover Effect: Brighter background + slight scale up */
.create-btn:hover {
    background-color: #3a3a3a;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Active click effect */
.create-btn:active {
    transform: scale(0.98);
}

/* --------------------------------------- */

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background-color: #cc0000;
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f0f0f;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3ea6ff, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 56px;
    right: 0;
    background-color: #272727;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    min-width: 280px;
    display: none;
    z-index: 1001;
}

.dropdown.active {
    display: block;
}

/* ADD SPACING TO RIGHT-SIDE DROPDOWNS */
.create-dropdown {
    right: 8px;
    min-width: 240px;
}

.notification-dropdown {
    right: 8px;
    min-width: 360px;
}

/* PROFILE DROPDOWN - NO SCROLLING, ALL ITEMS VISIBLE */
.profile-dropdown {
    right: 8px;
    min-width: 320px;
    max-height: none !important;
    overflow-y: visible !important;
    padding: 8px 0;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #3a3a3a;
}

.header-text {
    font-size: 16px;
    font-weight: 500;
}

.settings-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    border-radius: 50%;
}

.settings-link:hover {
    background-color: #3a3a3a;
}

.dropdown-divider {
    height: 1px;
    background-color: #3a3a3a;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #3a3a3a;
}

.item-icon {
    font-size: 18px;
    width: 24px;
}

.item-text {
    font-size: 14px;
}

/* Notification Items */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.notification-item:hover {
    background-color: #3a3a3a;
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.video-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-time {
    font-size: 12px;
    color: #aaa;
}

.notification-thumbnail {
    width: 120px;
    height: 68px;
    border-radius: 8px;
    background: linear-gradient(135deg, #333, #444);
    flex-shrink: 0;
    position: relative;
}

.notification-menu {
    position: absolute;
    top: 8px;
    right: 8px;
}

.menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    color: #aaa;
}

.menu-trigger:hover {
    background-color: #3a3a3a;
}

.menu-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #272727;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    display: none;
    z-index: 1002;
}

.menu-options.active {
    display: block;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 13px;
}

.menu-option:hover {
    background-color: #3a3a3a;
}

/* Sidebar Styles */
.sidebar {
    width: 240px;
    background-color: #0f0f0f;
    padding: 12px 0;
    transition: transform 0.3s ease;
    position: fixed;
    top: 56px;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 999;
}

.sidebar.collapsed {
    transform: translateX(-240px);
}

.sidebar-content {
    padding: 0 12px;
}

.sidebar-section {
    margin-bottom: 12px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-header:hover {
    background-color: #272727;
    border-radius: 8px;
}

.section-title {
    font-weight: 500;
}

.expand-icon {
    font-size: 12px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 12px;
    color: #f1f1f1;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
    font-size: 14px;
}

.sidebar-item:hover {
    background-color: #272727;
}

.sidebar-item.active {
    background-color: #272727;
    font-weight: 500;
}

.sidebar-item .item-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-item .channel-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.sidebar-divider {
    height: 1px;
    background-color: #2a2a2a;
    margin: 12px 0;
}

/* UPDATED: Default to BLOCK so menus are open by default */
.sidebar-submenu {
    display: block; 
    margin-top: 4px;
}

/* Class to hide if toggled closed */
.sidebar-submenu.hidden {
    display: none;
}

/* Main Content */
.main-content {
    display: flex;
    margin-top: 56px;
    min-height: calc(100vh - 56px);
}

.content-area {
    flex: 1;
    padding: 24px;
    background-color: #0f0f0f;
    margin-left: 240px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed + .content-area {
    margin-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .create-btn .btn-text {
        display: none;
    }
    
    .create-btn {
        width: 40px;
        height: 40px;
        padding: 0;
    }
    
    .sidebar {
        transform: translateX(-240px);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .content-area {
        margin-left: 0;
    }
}

/* Upload workspace — content area only */
.content-area:has(.upload-workspace) {
    padding: 0;
    background: #0f0f0f;
}

.upload-workspace {
    --surface: #212121;
    --surface-2: #282828;
    --line: #3f3f3f;
    --muted: #aaa;
    --blue: #3ea6ff;
    min-height: calc(100vh - 56px);
    padding: 28px clamp(24px, 4vw, 64px) 40px;
    color: #f1f1f1;
}

.upload-workspace button,
.upload-workspace input,
.upload-workspace textarea,
.upload-workspace select {
    font: inherit;
}

.upload-workspace button:focus-visible,
.upload-workspace input:focus-visible,
.upload-workspace textarea:focus-visible,
.upload-workspace select:focus-visible,
.drop-zone:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.upload-header {
    max-width: 1180px;
    margin: 0 auto 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.upload-breadcrumb {
    color: #909090;
    font-size: 12px;
    margin-bottom: 7px;
}

.upload-breadcrumb span {
    padding: 0 7px;
    color: #666;
}

.upload-header h1 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
}

.upload-card {
    max-width: 1180px;
    min-height: 690px;
    margin: 0 auto;
    border: 1px solid #303030;
    border-radius: 6px;
    background: var(--surface);
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    overflow: hidden;
}

.upload-select-stage {
    min-height: 690px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 46px 28px 28px;
}

.upload-queue-stage {
    min-height: 690px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 46px 28px 28px;
}

.upload-queue-panel {
    width: min(420px, 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.upload-queue-spinner {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 50%;
    border: 3px solid #333;
    border-top-color: var(--blue);
    animation: upload-queue-spin 0.9s linear infinite;
}

@keyframes upload-queue-spin {
    to { transform: rotate(360deg); }
}

.upload-queue-panel h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.upload-queue-panel p {
    margin: 0;
    color: #aaa;
    font-size: 13px;
}

#uploadQueuePosition {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.upload-queue-eta {
    color: var(--blue) !important;
    font-weight: 600;
}

.upload-queue-hint {
    max-width: 340px;
    margin-top: 6px !important;
}

#uploadQueueCancelBtn {
    margin-top: 18px;
    border: 1px solid #444 !important;
    border-radius: 4px;
}

.drop-zone {
    width: min(720px, 100%);
    min-height: 385px;
    border: 2px dashed #555;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: border-color .18s, background .18s;
    cursor: pointer;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--blue);
    background: rgba(62,166,255,.045);
}

.upload-illustration {
    width: 106px;
    height: 96px;
    position: relative;
    margin-bottom: 22px;
}

.upload-arrow {
    width: 68px;
    height: 68px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #303030;
}

.upload-arrow svg {
    width: 32px;
    fill: none;
    stroke: #bdbdbd;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.upload-tray {
    position: absolute;
    bottom: 2px;
    left: 22px;
    width: 62px;
    height: 15px;
    border: 3px solid #777;
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.drop-zone h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.drop-zone > p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.primary-upload-btn {
    border: 0;
    border-radius: 2px;
    background: var(--blue);
    color: #0f0f0f;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
}

.primary-upload-btn:hover { background: #65b8ff; }

.multiple-file-note {
    margin-top: 13px;
    color: #777;
    font-size: 12px;
}

.upload-specs {
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0 20px;
}

.spec-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
}

.spec-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #303030;
    display: grid;
    place-items: center;
    flex: none;
}

.spec-icon svg {
    width: 19px;
    fill: none;
    stroke: #bbb;
    stroke-width: 1.5;
}

.spec-item div { display: flex; flex-direction: column; gap: 3px; font-size: 12px; }
.spec-item strong { color: #ddd; font-size: 13px; font-weight: 500; }

.upload-policy {
    max-width: 700px;
    color: #717171;
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}

.upload-workspace a { color: var(--blue); text-decoration: none; }

.upload-editor-stage {
    min-height: 690px;
}

.editor-topbar {
    height: 68px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-file { display: flex; align-items: center; gap: 12px; min-width: 0; }
.current-file > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.current-file strong { max-width: 430px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.current-file span { color: var(--muted); font-size: 12px; }

.upload-tag-selector {
    display: grid;
    gap: 9px;
    padding: 10px;
    border: 1px solid #424242;
    border-radius: 8px;
    background: #171717;
}
.upload-tag-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.upload-tag-chips:empty { display: none; }
.upload-tag-chips span {
    display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px;
    color: #e7f2fb; background: #263746; border: 1px solid #36556e; border-radius: 999px; font-size: 11px;
}
.upload-tag-chips button { padding: 0; color: #a9c3d8; background: transparent; border: 0; cursor: pointer; font-size: 15px; }
.upload-tag-controls { display: grid; grid-template-columns: minmax(150px,1fr) minmax(150px,.8fr) auto; gap: 8px; }
.upload-tag-controls input, .upload-tag-controls select {
    min-height: 38px; padding: 0 10px; color: #eee; background: #222; border: 1px solid #484848; border-radius: 6px;
}
.upload-tag-controls button { padding: 0 15px; color: #fff; background: #285f88; border: 0; border-radius: 6px; cursor: pointer; font-weight: 700; }
@media (max-width: 700px) { .upload-tag-controls { grid-template-columns: 1fr; } }

.video-file-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: #303030;
    display: grid;
    place-items: center;
    flex: none;
}

.video-file-icon svg,
.add-videos-btn svg {
    width: 20px;
    fill: none;
    stroke: #cfcfcf;
    stroke-width: 1.6;
    stroke-linejoin: round;
}

.add-videos-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    background: transparent;
    border: 1px solid #5d5d5d;
    border-radius: 2px;
    padding: 9px 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.add-videos-btn svg { stroke: var(--blue); }

.editor-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    min-height: 570px;
}

.editor-main {
    padding: 0 32px 40px;
    min-width: 0;
}

.upload-tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
    margin: 0 -32px 28px;
    padding: 0 20px;
}

.upload-tab {
    min-height: 56px;
    flex: 1;
    max-width: 190px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.upload-tab.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.tab-status {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.tab-status.complete { background: #2ba640; color: white; }
.tab-status.warning { background: #f2b01e; color: #171717; }
.tab-status.pending { border: 2px solid #666; }

.tab-panel { max-width: 760px; }

.panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.panel-heading h2 { font-size: 23px; font-weight: 500; margin-bottom: 7px; }
.panel-heading p, .metadata-section > p, .visibility-box > p { color: var(--muted); font-size: 13px; line-height: 1.45; }

.ai-assist-btn {
    flex: none;
    border: 1px solid #665685;
    color: #c7a7ff;
    background: #2b2537;
    border-radius: 16px;
    padding: 7px 12px;
    cursor: pointer;
    font-size: 12px;
}

.form-field {
    position: relative;
    display: block;
    border: 1px solid #606060;
    border-radius: 4px;
    padding: 23px 12px 7px;
    margin-bottom: 20px;
}

.form-field:focus-within { border-color: var(--blue); }
.field-name { position: absolute; top: 7px; left: 12px; color: #aaa; font-size: 11px; }
.form-field input, .form-field textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #f1f1f1;
    font-size: 14px;
    resize: vertical;
}
.form-field textarea { min-height: 95px; line-height: 1.5; }
.form-field small { display: block; color: #858585; text-align: right; font-size: 11px; margin-top: 5px; }

.metadata-section {
    padding: 4px 0 22px;
}

.metadata-section h3, .visibility-box h3 { font-size: 15px; font-weight: 500; margin-bottom: 6px; }

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.thumbnail-option {
    aspect-ratio: 16 / 9;
    border: 2px solid transparent;
    background: #303030;
    color: #ddd;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.thumbnail-option.active { border-color: var(--blue); }
.thumbnail-option svg { width: 22px; fill: none; stroke: #ccc; stroke-width: 1.7; }
.upload-thumbnail { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; font-size: 11px; }
.thumbnail-option.generated { background: linear-gradient(145deg,#162630,#57747b 55%,#222 56%); }
.thumbnail-option.second { background: linear-gradient(25deg,#191919,#594939 55%,#957051); }
.thumbnail-option.third { background: linear-gradient(150deg,#24343b,#263024 50%,#5c7f68); }
.thumbnail-option.generated span { position: absolute; right: 4px; bottom: 3px; background: rgba(0,0,0,.8); padding: 2px 4px; font-size: 10px; }
.thumbnail-option.generated.has-frame { background-size: cover; background-position: center; }
.preview-player > video { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }
.preview-player > video:not([src]) { display: none; }
.preview-player > video[src] ~ .preview-placeholder { display: none; }
.large-file-preview-note { max-width: 240px; padding: 18px; text-align: center; }
.large-file-preview-note strong { display: block; margin-bottom: 7px; color: #fff; font-size: 13px; }
.large-file-preview-note span { display: block; color: #aaa; font-size: 11px; line-height: 1.45; }
.thumbnail-option:disabled { cursor: default; opacity: .72; }

.select-control {
    min-width: 130px;
    margin-top: 12px;
    padding: 9px 12px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    border: 1px solid #606060;
    color: #eee;
    border-radius: 2px;
    cursor: pointer;
}
.upload-playlist-picker { position: relative; width: min(100%, 430px); }
.upload-playlist-picker .select-control { width: 100%; align-items: center; }
.upload-playlist-menu { position: absolute; z-index: 30; inset: calc(100% + 6px) 0 auto; padding: 10px; border: 1px solid #454545; border-radius: 10px; background: #282828; box-shadow: 0 14px 38px #0008; }
.upload-playlist-menu[hidden] { display: none; }
#uploadPlaylistList { display: grid; gap: 3px; max-height: 210px; overflow: auto; }
.upload-playlist-item { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: 7px; cursor: pointer; }
.upload-playlist-item:hover { background: #373737; }
.upload-playlist-item small { margin-left: auto; color: #999; }
.upload-playlist-empty { padding: 8px; color: #999; font-size: 12px; }
.upload-create-playlist-toggle { width: 100%; margin-top: 8px; padding: 10px; border: 0; border-top: 1px solid #444; background: transparent; color: var(--blue); text-align: left; cursor: pointer; }
.upload-create-playlist { display: grid; grid-template-columns: 1fr 105px auto; gap: 6px; padding-top: 8px; }
.upload-create-playlist input, .upload-create-playlist select { min-width: 0; padding: 9px; border: 1px solid #555; border-radius: 6px; background: #181818; color: #fff; }
.upload-create-playlist button { border: 0; border-radius: 6px; padding: 0 13px; background: var(--blue); color: #fff; cursor: pointer; }
.upload-file-preparing { width: min(620px, calc(100% - 32px)); margin: 18px auto 0; display: flex; align-items: center; gap: 14px; padding: 15px 17px; border: 1px solid #3f4f64; border-radius: 12px; background: #172131; color: #f1f1f1; }
.upload-file-preparing[hidden] { display: none; }
.upload-file-preparing strong { display: block; font-size: 14px; overflow-wrap: anywhere; }
.upload-file-preparing p { margin: 4px 0 0; color: #aebbd0; font-size: 12px; }
.upload-file-spinner { width: 22px; height: 22px; flex: 0 0 auto; border: 3px solid #52647c; border-top-color: var(--blue); border-radius: 50%; animation: upload-file-spin .8s linear infinite; }
@keyframes upload-file-spin { to { transform: rotate(360deg); } }

.required-label { color: #999; font-size: 11px; font-weight: 400; margin-left: 5px; }
.radio-line, .check-line { display: flex; gap: 10px; align-items: flex-start; margin-top: 15px; font-size: 13px; cursor: pointer; }
.radio-line input, .check-line input, .visibility-option input { accent-color: var(--blue); }

.show-more-btn {
    margin-top: 24px;
    border: 0;
    color: var(--blue);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.advanced-details {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.two-column-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.two-column-fields label { display: flex; flex-direction: column; gap: 7px; color: #aaa; font-size: 12px; }
.two-column-fields select, .schedule-fields input {
    padding: 10px;
    color: #eee;
    background: #282828;
    border: 1px solid #606060;
    border-radius: 3px;
}

.upload-preview {
    border-left: 1px solid var(--line);
    padding: 28px 22px;
    background: #1d1d1d;
}

.preview-player {
    aspect-ratio: 16/9;
    background: #101010;
    position: relative;
}

.preview-placeholder { height: 100%; display: grid; place-items: center; }
.preview-placeholder svg { width: 50px; fill: #555; }
.preview-controls { position: absolute; inset: auto 0 0; height: 35px; padding: 12px; background: linear-gradient(transparent,rgba(0,0,0,.9)); font-size: 10px; }

.preview-info { padding: 16px 0; display: grid; grid-template-columns: 1fr; gap: 4px; border-bottom: 1px solid var(--line); }
.preview-info span { color: #888; font-size: 11px; margin-top: 7px; }
.preview-info a, .preview-info strong { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.processing-card { padding-top: 17px; }
.processing-status { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; min-height: 38px; font-size: 12px; margin-bottom: 9px; }
.processing-status > div { min-width: 0; display: grid; gap: 3px; }
.processing-status span { font-weight: 600; white-space: nowrap; }
.processing-status small { color: #999; line-height: 1.25; overflow-wrap: anywhere; }
.processing-status strong { flex: 0 0 42px; color: var(--blue); text-align: right; font-variant-numeric: tabular-nums; }
.progress-track { height: 4px; background: #454545; overflow: hidden; border-radius: 2px; }
.progress-fill { height: 100%; width: 0; background: var(--blue); transition: width .35s; }
.processing-card p { color: #888; font-size: 11px; line-height: 1.5; margin-top: 10px; }

.element-list, .checks-summary { display: grid; gap: 12px; }
#automatedChecksResults { display: grid; gap: 12px; }
#automatedChecksResults[hidden] { display: none; }
.element-row, .check-result, .check-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
}
.element-art {
    width: 46px; height: 46px; display: grid; place-items: center; flex: none;
    background: #303030; color: #bbb; border-radius: 50%; font-weight: 500;
}
.element-row div, .check-result div { flex: 1; }
.element-row h3, .check-result h3, .check-banner strong { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.element-row p, .check-result p, .check-banner p { color: var(--muted); font-size: 12px; line-height: 1.45; }
.element-row button { border: 0; background: transparent; color: var(--blue); font-weight: 700; font-size: 12px; cursor: pointer; }
.check-banner { align-items: flex-start; background: #1d2c22; border-color: #355b3e; }
.check-banner > span, .result-ok { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #2ba640; color: #fff; flex: none; }
.video-review-check small { display: block; margin-top: 6px; color: #f1b35f; font-size: 11px; line-height: 1.45; }
.result-pending { width: 24px; height: 24px; display: grid; place-items: center; flex: none; color: #111; background: #f2c94c; border-radius: 50%; font-weight: 700; }
.video-review-check.is-approved .result-pending { color: #fff; background: #2ba640; }
.video-review-check.is-denied .result-pending,
.video-review-check.is-archived .result-pending { color: #fff; background: #d94a4a; }

.visibility-box { border: 1px solid var(--line); border-radius: 4px; padding: 20px; margin-bottom: 14px; }
.visibility-option { display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; cursor: pointer; }
.visibility-option span { display: flex; flex-direction: column; gap: 4px; }
.visibility-option strong { font-size: 14px; font-weight: 500; }
.visibility-option small { color: var(--muted); font-size: 12px; }
.schedule-fields { margin: 18px 0 0 26px; display: flex; align-items: center; gap: 9px; }
.schedule-fields span { color: #888; font-size: 11px; }

.editor-footer {
    min-height: 64px;
    border-top: 1px solid var(--line);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 0;
    background: var(--surface);
    z-index: 5;
}

.footer-progress { color: #aaa; font-size: 12px; display: flex; align-items: center; gap: 8px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(62,166,255,.14); }
.footer-actions { display: flex; gap: 10px; }
.secondary-btn { border: 0; background: transparent; color: var(--blue); padding: 10px 16px; font-weight: 700; font-size: 12px; cursor: pointer; }

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 20px);
    background: #f1f1f1;
    color: #151515;
    padding: 11px 18px;
    border-radius: 3px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 1200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1100px) {
    .editor-grid { grid-template-columns: minmax(0, 1fr) 270px; }
    .upload-workspace { padding-left: 24px; padding-right: 24px; }
    .editor-main { padding-left: 24px; padding-right: 24px; }
    .upload-tabs { margin-left: -24px; margin-right: -24px; }
}

@media (max-width: 900px) {
    .editor-grid { display: block; }
    .upload-preview { border-left: 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 230px 1fr; gap: 20px; }
    .processing-card { grid-column: 1/-1; }
}

@media (max-width: 640px) {
    .upload-workspace { padding: 18px 12px 28px; }
    .upload-header { align-items: flex-start; }
    .upload-breadcrumb { display: none; }
    .upload-card, .upload-select-stage { min-height: calc(100vh - 125px); }
    .drop-zone { min-height: 360px; border-left: 0; border-right: 0; border-radius: 0; }
    .upload-specs { grid-template-columns: 1fr; }
    .editor-topbar { padding: 0 14px; }
    .add-videos-btn { font-size: 0; padding: 9px; }
    .editor-main { padding: 0 16px 30px; }
    .upload-tabs { margin-left: -16px; margin-right: -16px; padding: 0; overflow-x: auto; }
    .upload-tab { min-width: 105px; font-size: 11px; }
    .panel-heading { display: block; }
    .ai-assist-btn { margin-top: 12px; }
    .thumbnail-row { grid-template-columns: 1fr 1fr; }
    .two-column-fields { grid-template-columns: 1fr; }
    .upload-preview { grid-template-columns: 1fr; }
    .processing-card { grid-column: auto; }
    .schedule-fields { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    .upload-workspace *, .upload-workspace *::before, .upload-workspace *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* Upload page visual refinement */
.upload-workspace {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% -10%, rgba(62, 166, 255, .10), transparent 35%),
        linear-gradient(180deg, #111 0%, #0f0f0f 42%);
}

.upload-workspace::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 120px;
    left: 50%;
    width: min(72vw, 900px);
    height: 480px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(62, 166, 255, .035);
    filter: blur(70px);
    pointer-events: none;
}

.upload-header {
    padding: 4px 2px 2px;
}

.upload-header h1 {
    font-size: 29px;
    letter-spacing: -.65px;
    line-height: 1.15;
}

.upload-title-block {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.back-to-content {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -8px;
    padding: 7px 9px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #aaa;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color .16s, background .16s, transform .16s;
}

.back-to-content svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.back-to-content:hover {
    color: #f1f1f1;
    background: rgba(255,255,255,.055);
    transform: translateX(-2px);
}

.upload-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.upload-title-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upload-title-row p {
    color: #8f8f8f;
    font-size: 13px;
}

.upload-title-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(62,166,255,.22);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(62,166,255,.18), rgba(62,166,255,.06));
    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        0 1px 0 rgba(255,255,255,.05) inset;
}

.upload-title-icon svg {
    width: 24px;
    fill: none;
    stroke: #67bbff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.upload-card {
    border-color: rgba(255,255,255,.10);
    border-radius: 12px;
    background: linear-gradient(180deg, #222 0%, #1f1f1f 100%);
    box-shadow:
        0 24px 70px rgba(0,0,0,.36),
        0 1px 0 rgba(255,255,255,.035) inset;
}

.drop-zone {
    position: relative;
    border-color: #50545a;
    border-radius: 14px;
    background:
        linear-gradient(#232323, #232323) padding-box,
        linear-gradient(135deg, rgba(62,166,255,.32), rgba(255,255,255,.08)) border-box;
    box-shadow: 0 16px 40px rgba(0,0,0,.14) inset;
}

.drop-zone::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,.025);
    border-radius: 9px;
    pointer-events: none;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--blue);
    background:
        linear-gradient(rgba(62,166,255,.07), rgba(62,166,255,.025)) padding-box,
        linear-gradient(135deg, var(--blue), #7bc5ff) border-box;
    box-shadow: 0 0 0 5px rgba(62,166,255,.06);
    transform: translateY(-1px);
}

.upload-illustration {
    margin-bottom: 26px;
}

.upload-arrow {
    background: linear-gradient(145deg, #3b3d40, #292a2c);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 10px 28px rgba(0,0,0,.32),
        0 1px 0 rgba(255,255,255,.08) inset;
}

.upload-arrow svg {
    stroke: #f1f1f1;
}

.upload-tray {
    border-color: #666b70;
}

.drop-zone h2 {
    font-size: 20px;
    letter-spacing: -.2px;
}

.primary-upload-btn {
    min-height: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 16px rgba(62,166,255,.18);
    transition: background .18s, transform .18s, box-shadow .18s;
}

.primary-upload-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(62,166,255,.26);
}

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

.upload-specs {
    padding: 2px 8px;
}

.spec-item {
    padding: 10px 12px;
    border-radius: 8px;
    transition: background .18s;
}

.spec-item:hover {
    background: rgba(255,255,255,.035);
}

.spec-icon {
    background: linear-gradient(145deg, #343434, #292929);
    border: 1px solid rgba(255,255,255,.06);
}

.editor-topbar,
.editor-footer {
    background: rgba(33,33,33,.94);
    backdrop-filter: blur(12px);
}

.video-file-icon {
    background: linear-gradient(145deg, #353535, #292929);
    border: 1px solid rgba(255,255,255,.06);
}

.add-videos-btn,
.select-control,
.secondary-btn {
    transition: background .16s, border-color .16s;
}

.add-videos-btn:hover,
.select-control:hover {
    background: rgba(255,255,255,.055);
    border-color: #858585;
}

.upload-tabs {
    background: rgba(255,255,255,.012);
}

.upload-tab {
    position: relative;
    transition: color .16s, background .16s;
}

.upload-tab:hover {
    color: #f1f1f1;
    background: rgba(255,255,255,.025);
}

.upload-tab.active {
    background: linear-gradient(180deg, transparent 72%, rgba(62,166,255,.07));
}

.panel-heading h2 {
    letter-spacing: -.3px;
}

.ai-assist-btn {
    border-color: rgba(198,164,255,.35);
    background: linear-gradient(135deg, rgba(120,73,180,.24), rgba(62,166,255,.10));
    box-shadow: 0 5px 18px rgba(70,42,110,.16);
}

.ai-assist-btn:hover {
    border-color: #a981e8;
    background: linear-gradient(135deg, rgba(120,73,180,.34), rgba(62,166,255,.16));
}

.form-field {
    background: rgba(0,0,0,.08);
    transition: border-color .16s, box-shadow .16s, background .16s;
}

.form-field:hover {
    border-color: #777;
    background: rgba(0,0,0,.12);
}

.form-field:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(62,166,255,.08);
}

.thumbnail-option {
    border-radius: 5px;
    box-shadow: 0 5px 14px rgba(0,0,0,.20);
    transition: transform .16s, border-color .16s, filter .16s;
}

.thumbnail-option:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.element-row,
.check-result,
.check-banner,
.visibility-box {
    background: rgba(255,255,255,.018);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: background .16s, border-color .16s, transform .16s;
}

.element-row:hover,
.check-result:hover,
.visibility-box:hover {
    background: rgba(255,255,255,.03);
    border-color: #555;
}

.element-art {
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 5px 14px rgba(0,0,0,.20);
}

.preview-player {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.upload-preview {
    background:
        radial-gradient(circle at 50% 10%, rgba(62,166,255,.055), transparent 34%),
        #1b1b1b;
}

.progress-track {
    height: 5px;
    background: #383838;
    box-shadow: 0 1px 2px rgba(0,0,0,.25) inset;
}

.progress-fill {
    background: linear-gradient(90deg, #2196f3, #65bdff);
    box-shadow: 0 0 10px rgba(62,166,255,.4);
}

.toast {
    border-radius: 6px;
    box-shadow: 0 12px 34px rgba(0,0,0,.4);
}

.settings-group {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.settings-group:first-child {
    border-top: 0;
}

.settings-group-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 16px;
}

.settings-group-heading > div {
    flex: 1;
}

.settings-group-heading h3 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
}

.settings-group-heading p,
.setting-help {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.settings-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: none;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    background: #303030;
    color: #c7c7c7;
    font-size: 11px;
    font-weight: 600;
}

.settings-group .check-line,
.settings-group .radio-line {
    margin-left: 44px;
}

.setting-help {
    margin: 9px 0 0 68px;
}

.inline-radio-group {
    display: flex;
    gap: 28px;
}

.inline-radio-group .radio-line {
    margin-top: 0;
}

.compact-field {
    margin: 0;
}

.settings-group .compact-field {
    margin-left: 44px;
}

.two-column-fields input {
    width: 100%;
    padding: 10px;
    color: #eee;
    background: #282828;
    border: 1px solid #606060;
    border-radius: 3px;
}

.full-select {
    width: 100%;
    padding: 10px;
    color: #eee;
    background: #282828;
    border: 1px solid #606060;
    border-radius: 3px;
}

.subfield-label {
    display: block;
    margin: 0 0 7px;
    color: #aaa;
    font-size: 12px;
}

.collaborator-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px auto;
    gap: 8px;
    margin-left: 44px;
}

.collaborator-row input,
.collaborator-row select {
    min-width: 0;
    padding: 10px;
    border: 1px solid #606060;
    border-radius: 3px;
    background: #282828;
    color: #eee;
}

.collaborator-row button {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.collaborator-list {
    display: grid;
    gap: 7px;
    margin: 12px 0 0 44px;
}

.collaborator-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: #ddd;
    font-size: 12px;
}

.collaborator-chip button {
    border: 0;
    background: transparent;
    color: #aaa;
    cursor: pointer;
}

.premiere-settings > p {
    margin: 7px 0 0 26px;
}

.conditional-settings {
    display: block;
    margin-top: 18px;
    padding: 16px;
    border-radius: 5px;
    background: rgba(255,255,255,.025);
}

.conditional-settings[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .back-to-content span {
        display: none;
    }

    .upload-title-icon {
        width: 42px;
        height: 42px;
    }

    .upload-header h1 {
        font-size: 25px;
    }

    .settings-group .check-line,
    .settings-group .radio-line,
    .settings-group .compact-field,
    .setting-help,
    .collaborator-row,
    .collaborator-list {
        margin-left: 0;
    }

    .collaborator-row {
        grid-template-columns: 1fr;
    }
}

/* Publish + draft actions */
.footer-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.publish-upload-btn {
    min-height: 40px;
    padding: 0 22px;
    border: 0;
    border-radius: 5px;
    background: #2ba640;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(43, 166, 64, .22);
    transition: background .18s, transform .18s, box-shadow .18s, opacity .18s;
}

.publish-upload-btn:hover {
    background: #34c353;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(43, 166, 64, .3);
}

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

.publish-upload-btn:disabled,
.primary-upload-btn:disabled,
#saveDraftBtn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#saveDraftBtn {
    color: #f1f1f1;
    border: 1px solid #5f5f5f;
    border-radius: 5px;
    min-height: 40px;
    padding: 0 16px;
    background: transparent;
}

#saveDraftBtn:hover {
    background: rgba(255, 255, 255, .06);
}

.publish-upload-btn.is-busy,
.primary-upload-btn.is-busy {
    pointer-events: none;
}

.content-type-toggle {
    display: inline-flex;
    gap: 6px;
    margin-top: 14px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}

.content-type-toggle .type-chip {
    border: 0;
    background: transparent;
    color: #bbb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
}

.content-type-toggle .type-chip:hover {
    color: #fff;
}

.content-type-toggle .type-chip.active {
    background: #3ea6ff;
    color: #0f0f0f;
}
