/* ============================================
   Workout Tracker — CSS (v3)
   Colors: bg #111827, accent #2969ed, text #dadcdf
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #111827;
    --bg-card: #1f2937;
    --bg-input: #0f1219;
    --accent: #2969ed;
    --accent-hover: #3b7bf7;
    --accent-glow: rgba(41, 105, 237, 0.25);
    --text: #dadcdf;
    --text2: #8b8f96;
    --text3: #5b5f66;
    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.2);
    --red: #ef4444;
    --border: rgba(218, 220, 223, 0.08);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --tr: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#app {
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* === Header === */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    padding-top: max(16px, env(safe-area-inset-top));
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg) 70%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.header-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-date {
    font-size: 0.75rem;
    color: var(--text2);
    font-weight: 500;
}

.edit-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg-card);
    color: var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
}

.edit-btn:active {
    transform: scale(0.92);
}

.edit-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

.edit-icon {
    width: 20px;
    height: 20px;
}

/* === Day Tabs === */
.day-tabs {
    display: flex;
    gap: 6px;
    padding: 0 20px 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.day-tabs::-webkit-scrollbar {
    display: none;
}

.day-tab {
    flex: 1;
    min-width: 48px;
    padding: 10px 4px;
    border: none;
    border-radius: var(--r-md);
    background: var(--bg-card);
    color: var(--text3);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
    position: relative;
    text-align: center;
}

.day-tab:active {
    transform: scale(0.94);
}

.day-tab.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.day-tab.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.day-tab.active.today::after {
    background: #fff;
}

/* === Content === */
.workout-content {
    padding: 0 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.section-header svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text2);
}

.section-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0 16px;
}

/* === Day Type Selector === */
.day-type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.day-type-btn {
    flex: 1;
    padding: 10px 8px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg-card);
    color: var(--text3);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.day-type-btn:active {
    transform: scale(0.95);
}

.day-type-btn.active {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

/* === Off Day State === */
.special-day-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.special-day-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: floaty 2s ease-in-out infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.special-day-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.special-day-text {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.5;
}

/* === Cardio Badge === */
.cardio-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--r-md);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: #06b6d4;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* === Card Thumbnail === */
.card-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-input);
}

/* === Exercise Card === */
.exercise-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    transition: all var(--tr);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exercise-card.completed {
    border-color: rgba(34, 197, 94, 0.15);
    background: linear-gradient(135deg, var(--bg-card), rgba(34, 197, 94, 0.03));
}

.exercise-card.completed .exercise-name {
    text-decoration: line-through;
    color: var(--text3);
}

.exercise-card-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exercise-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: default;
}

.edit-mode .exercise-info {
    cursor: pointer;
}

.exercise-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.exercise-reps {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text2);
}

/* === Warmup Card === */
.warmup-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--tr);
    animation: slideIn 0.3s ease;
}

.warmup-card.done {
    border-color: rgba(34, 197, 94, 0.15);
    background: linear-gradient(135deg, var(--bg-card), rgba(34, 197, 94, 0.03));
}

.warmup-info {
    flex: 1;
    cursor: default;
}

.edit-mode .warmup-info {
    cursor: pointer;
}

.warmup-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.warmup-card.done .warmup-name {
    text-decoration: line-through;
    color: var(--text3);
}

.warmup-reps {
    font-size: 0.75rem;
    color: var(--text2);
    margin-top: 2px;
}

/* === Delete & Check buttons === */
.item-delete {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: var(--r-sm);
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
    opacity: 0;
    pointer-events: none;
    flex-shrink: 0;
}

.item-delete svg {
    width: 16px;
    height: 16px;
}

.edit-mode .item-delete {
    opacity: 1;
    pointer-events: auto;
}

.item-delete:active {
    transform: scale(0.9);
}

.check-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--text3);
    border-radius: 50%;
    background: transparent;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
    flex-shrink: 0;
}

.check-btn:active {
    transform: scale(0.85);
}

.check-btn.checked {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 0 12px var(--green-glow);
}

.check-btn svg {
    width: 14px;
    height: 14px;
}

.move-buttons {
    display: none;
    gap: 4px;
    flex-shrink: 0;
}

.edit-mode .move-buttons {
    display: flex;
}

.move-btn {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: var(--r-sm);
    background: var(--bg-input);
    color: var(--text3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
}

.move-btn:active {
    transform: scale(0.9);
    color: var(--accent);
}

.move-btn svg {
    width: 14px;
    height: 14px;
}

/* === Set Group (Superset / Compound) === */
.set-group {
    position: relative;
    margin-bottom: 12px;
    padding-left: 16px;
}

.set-group-line {
    position: absolute;
    left: 4px;
    top: 32px;
    bottom: 12px;
    width: 3px;
    border-radius: 2px;
    background: var(--gc);
    box-shadow: 0 0 10px color-mix(in srgb, var(--gc) 35%, transparent);
}

.set-group-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.set-group-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.set-group-cards .exercise-card {
    margin-bottom: 6px;
    border-left: none;
}

/* === Empty State === */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    width: 64px;
    height: 64px;
    color: var(--text3);
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}

.empty-subtext {
    font-size: 0.8rem;
    color: var(--text3);
}

/* === Add Buttons === */
.add-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    background: linear-gradient(to top, var(--bg) 60%, transparent);
    z-index: 90;
    max-width: 480px;
    margin: 0 auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.add-buttons.hidden {
    display: none;
}

.add-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border: none;
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
}

.add-btn:active {
    transform: scale(0.96);
}

.add-btn svg {
    width: 18px;
    height: 18px;
}

.add-warmup-btn {
    background: var(--bg-card);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.add-exercise-btn {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.add-exercise-btn:active {
    background: var(--accent-hover);
}

/* === Modal Base === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.modal-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 24px 20px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    animation: modalUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-tall {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

@keyframes modalUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--r-sm);
    background: var(--bg-input);
    color: var(--text2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-close:active {
    transform: scale(0.9);
}

.modal-body {
    flex-shrink: 0;
}

.modal-body-scroll {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 4px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg-input);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color var(--tr);
    outline: none;
}

.form-input::placeholder {
    color: var(--text3);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* === Type Pill Buttons === */
.set-type-buttons,
.ex-row-type {
    display: flex;
    gap: 8px;
}

.type-pill {
    flex: 1;
    padding: 10px 8px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg-input);
    color: var(--text3);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.type-pill:active {
    transform: scale(0.95);
}

.type-pill.active {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

/* === Multi-Exercise Row === */
.ex-row {
    background: var(--bg-input);
    border-radius: var(--r-md);
    padding: 14px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    animation: slideIn 0.2s ease;
}

.ex-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ex-row-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ex-row-remove {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: var(--r-sm);
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
}

.ex-row-remove svg {
    width: 14px;
    height: 14px;
}

.ex-row-remove:active {
    transform: scale(0.9);
}

.ex-row-fields {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.ex-row-name {
    flex: 1.5;
}

.ex-row-reps {
    flex: 1;
}

.ex-row-fields .form-input {
    padding: 10px 12px;
    font-size: 0.85rem;
}

.ex-row-type {
    gap: 6px;
}

.ex-row-type .type-pill {
    padding: 7px 6px;
    font-size: 0.7rem;
}

.modal-actions {
    flex-shrink: 0;
    margin-top: 4px;
    margin-bottom: 8px;
}

.add-row-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border: 1.5px dashed var(--border);
    border-radius: var(--r-md);
    background: transparent;
    color: var(--text2);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
}

.add-row-btn:active {
    border-color: var(--accent);
    color: var(--accent);
}

.modal-footer {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-shrink: 0;
}

.btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
}

.btn:active {
    transform: scale(0.96);
}

.btn-cancel {
    background: var(--bg-input);
    color: var(--text2);
}

.btn-save {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-save:active {
    background: var(--accent-hover);
}

.btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0.6;
}

.btn-delete:active {
    background: rgba(239, 68, 68, 0.2);
}

.btn-delete svg {
    width: 16px;
    height: 16px;
}

/* === Image Picker === */
.image-picker {
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-preview {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    object-fit: cover;
    background: var(--bg-input);
}

.image-pick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tr);
}

.image-pick-btn:active {
    transform: scale(0.96);
}

.image-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.ex-row-image-pick {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.ex-row-thumb {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    object-fit: cover;
}

.image-pick-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text3);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.ex-row-img-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* === Progress === */
.day-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--r-md);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.progress-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.progress-bar-container {
    flex: 1;
    max-width: 160px;
    height: 6px;
    background: var(--bg-input);
    border-radius: 3px;
    overflow: hidden;
    margin-left: 16px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--green));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Utility === */
.hidden {
    display: none !important;
}

/* === YouTube Video Button === */
.video-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 0, 0, 0.12);
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--tr);
    cursor: pointer;
}

.video-btn:active {
    transform: scale(0.88);
}

.video-btn:hover {
    background: rgba(255, 0, 0, 0.22);
}

.video-btn svg {
    width: 18px;
    height: 18px;
}

/* === Video Player Modal === */
.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
    padding: 20px;
}

.video-overlay.hidden {
    display: none;
}

.video-modal {
    width: 100%;
    max-width: 640px;
    background: var(--bg-card);
    border-radius: var(--r-xl);
    overflow: hidden;
    animation: modalUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.video-modal-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* === Video input in exercise rows === */
.ex-row-video {
    margin-bottom: 10px;
}

.ex-row-video .form-input {
    padding: 8px 12px;
    font-size: 0.8rem;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--text3);
    border-radius: 4px;
}