:root {
    --navy: #003256;
    --blue: #004a7c;
    --gold: #FDB736;
    --dark-gold: #C89030;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

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

#testNameInput:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--light-gray);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header - from test-edit */
.header {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-img {
    height: 60px;
}

.header-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-welcome {
    font-size: 0.95rem;
}

.logout-btn {
    background: white;
    color: var(--navy);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #f0f0f0;
}

/* Navigation - from test-edit */
nav {
    background: #e8e8e8;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.nav-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
}

.nav-row.secondary {
    border-top: 1px solid #d0d0d0;
}

nav a {
    background: var(--navy);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover {
    background: var(--blue);
}

nav a.active {
    background: var(--dark-gold);
}

/* Page Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--blue);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header-left h2 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-header-left p {
    color: #666;
    margin: 0;
}

.page-header-actions {
    display: flex;
    gap: 0.75rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-draft { background: var(--warning); color: #333; }
.status-active { background: var(--success); color: white; }
.status-archived { background: #6c757d; color: white; }

/* Alert Banners */
#alertContainer {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    width: 90%;
    max-width: 600px;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }

/* Buttons */
.btn {
    padding: 0.6rem 1.25rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--blue); }

.btn-secondary { background: #6c757d; color: white; }
.btn-secondary:hover { background: #5a6268; }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--dark-gold); color: white; }

/* Two-Panel Layout */
.builder-layout {
    display: flex;
    gap: 1.5rem;
    min-height: calc(100vh - 280px);
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
}

.sidebar-header h3 {
    font-size: 0.95rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

.item-card {
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.15s;
}

.item-card:hover { border-color: #ccc; }
.item-card.active { 
    border-color: var(--blue); 
    background: rgba(0, 74, 124, 0.08);
}

.item-card .drag-handle {
    cursor: grab;
    color: #999;
    padding: 0.25rem;
    font-size: 1.1rem;
}
.item-card .drag-handle:active { cursor: grabbing; }
.item-card .drag-handle.disabled { cursor: not-allowed; opacity: 0.3; }

.item-card .item-number {
    background: var(--navy);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    min-width: 28px;
    text-align: center;
}

.item-card .item-info {
    flex: 1;
    min-width: 0;
}

.item-card .item-type {
    font-size: 0.7rem;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
}

.item-card .item-preview {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-card .item-points {
    font-size: 0.75rem;
    color: var(--dark-gold);
    font-weight: 600;
}

.sidebar-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    background: var(--light-gray);
    font-size: 0.85rem;
    color: #666;
}

.sidebar-footer .stat {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.sidebar-footer .stat-value {
    font-weight: 600;
    color: var(--navy);
}

/* Editor Panel */
.editor-panel {
    flex: 1;
    overflow-y: auto;
}

.editor-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.editor-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    border-radius: 8px 8px 0 0;
}

.editor-card-header h4 {
    font-size: 0.9rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.editor-card-body {
    padding: 1.25rem;
}

/* Stimulus Editor Styles */
#stimulusCard .quill-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: visible;
    background: white;
}

#stimulusCard .quill-container .ql-toolbar {
    border: none;
    border-bottom: 1px solid #ddd;
    background: var(--light-gray);
    border-radius: 5px 5px 0 0;
}

#stimulusCard .quill-container .ql-container {
    border: none;
    font-size: 1rem;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

#stimulusCard .quill-container .ql-editor {
    min-height: 200px;
    padding: 1rem;
    line-height: 1.8;
}

#stimulusImagePreview img,
#stimulusVideoPreview video {
    max-width: 100%;
    max-height: 300px;
    border-radius: 4px;
}

#stimulusAudioPreview audio {
    width: 100%;
}
/* Form Controls */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 74, 124, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    background: #e9ecef;
    cursor: not-allowed;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.8rem;
}

/* Quill Editor */
.quill-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: visible;
    background: white;
}

.quill-container .ql-toolbar {
    border: none;
    border-bottom: 1px solid #ddd;
    background: var(--light-gray);
    border-radius: 5px 5px 0 0;
}

.quill-container .ql-container {
    border: none;
    font-size: 1rem;
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
}

.quill-container .ql-editor {
    min-height: 150px;
    padding: 1rem;
}

.quill-container .ql-editor.ql-blank::before {
    font-style: italic;
    color: #999;
}

/* Answer Options */
.option-list {
    list-style: none;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.option-item .option-correct input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-item .option-label {
    font-weight: 600;
    color: var(--navy);
    min-width: 24px;
}

.option-item .option-text {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.option-item .option-delete {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.6;
}
.option-item .option-delete:hover { opacity: 1; }
.option-item .option-delete:disabled { opacity: 0.3; cursor: not-allowed; }

.add-option-btn {
    background: none;
    border: 1px dashed #999;
    color: var(--blue);
    padding: 0.75rem;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
}
.add-option-btn:hover {
    border-color: var(--blue);
    background: rgba(0, 74, 124, 0.05);
}
.add-option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* SJT Best/Worst Styles */
.sjt-option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 6px;
    border: 2px solid #ddd;
    transition: border-color 0.2s, background-color 0.2s;
}
.sjt-option-item.is-best {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}
.sjt-option-item.is-worst {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}
.sjt-option-item .option-label {
    font-weight: 600;
    color: var(--navy);
    min-width: 30px;
}
.sjt-option-item .option-text {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.95rem;
}
.sjt-option-item .option-text:focus {
    border-color: var(--blue);
    outline: none;
}
.sjt-option-item .sjt-badges {
    display: flex;
    gap: 0.25rem;
    min-width: 90px;
    justify-content: flex-end;
}
.sjt-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.sjt-badge.best { background: #28a745; color: white; }
.sjt-badge.worst { background: #dc3545; color: white; }
.sjt-option-item .option-delete {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    padding: 0.25rem;
}
.sjt-option-item .option-delete:hover { opacity: 1; }

/* Zone List (DragDrop, RankOrder, etc.) */
.zone-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 6px;
    border: 1px solid #ddd;
}

.zone-item .zone-handle { cursor: grab; color: #999; }
.zone-item .zone-label { font-size: 0.8rem; color: #666; min-width: 60px; font-weight: 600; }
.zone-item input[type="text"] { flex: 1; min-width: 0; width: auto; padding: 0.4rem 0.6rem; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; }
.zone-item select { width: auto; max-width: 180px; flex-shrink: 0; padding: 0.4rem 0.6rem; border: 1px solid #ddd; border-radius: 4px; font-size: 0.9rem; }
.zone-item .zone-delete { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 1rem; flex-shrink: 0; }

/* Toggle Row */
.toggle-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.toggle-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.toggle-row label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

/* Feedback Section */
.feedback-section {
    background: #fffbf0;
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 1rem;
}

.feedback-section .section-note {
    font-size: 0.8rem;
    color: var(--dark-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
    background: white;
    border-radius: 8px;
}

.empty-state h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* Loading */
.loading-container {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--navy);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Status Bar */
.status-bar {
    background: white;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.status-bar .status-left {
    display: flex;
    gap: 1.5rem;
}

.status-bar .status-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-bar .status-value {
    font-weight: 600;
    color: var(--navy);
}

.status-bar .save-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-bar .save-status.saving { color: var(--warning); }
.status-bar .save-status.saved { color: var(--success); }
.status-bar .save-status.unsaved { color: var(--danger); }
.status-bar .save-status.error { color: var(--danger); }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    border-radius: 8px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-close {
    background: rgba(255,255,255,0.15);
    border: none;
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.3); color: #fff; }

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.modal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.modal-section h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Settings Tabs */
.settings-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 1.5rem;
}

.settings-tab {
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.settings-tab:hover { color: var(--navy); }
.settings-tab.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.settings-panel {
    display: none;
}

.settings-panel.active {
    display: block;
}

/* CSV Import Modal */
.csv-import-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.csv-import-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.template-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.template-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--navy);
    background: white;
    color: var(--navy);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.template-btn:hover {
    background: var(--navy);
    color: white;
}

.template-btn.primary {
    background: var(--navy);
    color: white;
}

.template-btn.primary:hover {
    background: var(--blue);
}

.file-drop-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.file-drop-zone:hover {
    border-color: var(--navy);
    background: rgba(0, 50, 86, 0.02);
}

.file-drop-zone.dragover {
    border-color: var(--gold);
    background: rgba(253, 183, 54, 0.1);
}

.file-drop-zone.has-file {
    border-color: var(--success);
    background: rgba(40, 167, 69, 0.05);
}

.file-drop-zone input[type="file"] {
    display: none;
}

.file-drop-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-drop-text {
    color: #666;
    font-size: 0.95rem;
}

.file-drop-text .highlight {
    color: var(--navy);
    font-weight: 600;
    cursor: pointer;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 6px;
    margin-top: 1rem;
}

.file-info .file-icon {
    font-size: 1.5rem;
}

.file-info .file-details {
    flex: 1;
}

.file-info .file-name {
    font-weight: 600;
    color: var(--navy);
}

.file-info .file-size {
    font-size: 0.8rem;
    color: #666;
}

.file-info .file-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
}

.import-preview {
    margin-top: 1rem;
}

.preview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.preview-table th,
.preview-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.preview-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--navy);
}

.preview-table tr:hover {
    background: #fafafa;
}

.type-badge {
    display: inline-block;
    padding: 0.15rem 0.4rem;
    background: var(--navy);
    color: white;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
}

.import-errors {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.import-errors .error-header {
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.import-errors ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #b71c1c;
    font-size: 0.9rem;
}

.import-errors li {
    margin-bottom: 0.25rem;
}

.import-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 6px;
    margin-top: 1rem;
}

.import-stat {
    text-align: center;
}

.import-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.import-stat .stat-label {
    font-size: 0.8rem;
    color: #666;
}

.csv-help-link {
    font-size: 0.85rem;
    color: var(--blue);
    text-decoration: none;
}

.csv-help-link:hover {
    text-decoration: underline;
}

.media-picker-tab {
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.media-picker-tab:hover { color: var(--navy); }
.media-picker-tab.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}
.media-picker-tab {
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.media-picker-tab:hover { color: var(--navy); }
.media-picker-tab.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}
