/* ═══════════════════════════════════════════════════════════════
   Eng.Jamil — Custom Stylesheet  (Bootstrap 5 dark theme base)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --cyan: #06b6d4;
    --violet: #7c3aed;
    --pink: #ec4899;
    --amber: #f59e0b;
    --green: #10b981;
    --bg: #0a0f1e;
    --bg-card: #0d1424;
    --border: rgba(255, 255, 255, .07);
}

/* ── Base ───────────────────────────────────────────────────── */
body {
    background: var(--bg);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.font-arabic,
[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

main {
    flex: 1;
}

/* ── Color helpers ──────────────────────────────────────────── */
.text-cyan {
    color: var(--cyan) !important;
}

.text-violet {
    color: var(--violet) !important;
}

.text-pink {
    color: var(--pink) !important;
}

.text-amber {
    color: var(--amber) !important;
}

.text-green {
    color: var(--green) !important;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-cyan {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #000;
    font-weight: 600;
}

.btn-cyan:hover {
    background: #0891b2;
    border-color: #0891b2;
    color: #000;
}

.btn-outline-cyan {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-outline-cyan:hover {
    background: var(--cyan);
    color: #000;
}

.btn-outline-pink {
    border-color: var(--pink);
    color: var(--pink);
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
}

.btn-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

/* ── Badges ─────────────────────────────────────────────────── */
.ej-badge-cyan {
    background: rgba(6, 182, 212, .15);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, .3);
    font-weight: 500;
}

.ej-badge-violet {
    background: rgba(124, 58, 237, .15);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, .3);
    font-weight: 500;
}

.ej-badge-pink {
    background: rgba(236, 72, 153, .15);
    color: var(--pink);
    border: 1px solid rgba(236, 72, 153, .3);
    font-weight: 500;
}

.ej-badge-amber {
    background: rgba(245, 158, 11, .15);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, .3);
    font-weight: 500;
}

/* ── Cards ──────────────────────────────────────────────────── */
.ej-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.ej-card:hover {
    border-color: rgba(6, 182, 212, .25);
}

/* ── Notes vault ────────────────────────────────────────────── */
.notes-card {
    transition: border-color .2s, transform .2s, background .2s;
}

.notes-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, .28);
}

.notes-card-pinned {
    border-color: rgba(245, 158, 11, .35);
    background: linear-gradient(180deg, rgba(245, 158, 11, .06), var(--bg-card));
}

.notes-card-archived {
    opacity: .78;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.ej-navbar {
    background: rgba(10, 15, 30, .85) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.ej-navbar .nav-link {
    color: #94a3b8;
    transition: color .2s;
}

.ej-navbar .nav-link:hover,
.ej-navbar .nav-link.active {
    color: #fff;
}

.ej-navbar .nav-link.active {
    color: var(--cyan) !important;
    font-weight: 600;
}

/* ── Hero ───────────────────────────────────────────────────── */
.ej-hero {
    min-height: 95vh;
    background: var(--bg);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(6, 182, 212, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, .12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ── Skill cards ────────────────────────────────────────────── */
.ej-skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color .25s, transform .25s;
}

.ej-skill-card:hover {
    transform: translateY(-4px);
}

.ej-skill-card.color-cyan {
    border-top: 3px solid var(--cyan);
}

.ej-skill-card.color-violet {
    border-top: 3px solid var(--violet);
}

.ej-skill-card.color-pink {
    border-top: 3px solid var(--pink);
}

.ej-skill-card.color-amber {
    border-top: 3px solid var(--amber);
}

.ej-skill-card.color-cyan .skill-icon,
.ej-skill-card.color-cyan .skill-icon-sm {
    color: var(--cyan);
    background: rgba(6, 182, 212, .12);
}

.ej-skill-card.color-violet .skill-icon,
.ej-skill-card.color-violet .skill-icon-sm {
    color: #a78bfa;
    background: rgba(124, 58, 237, .12);
}

.ej-skill-card.color-pink .skill-icon,
.ej-skill-card.color-pink .skill-icon-sm {
    color: var(--pink);
    background: rgba(236, 72, 153, .12);
}

.ej-skill-card.color-amber .skill-icon,
.ej-skill-card.color-amber .skill-icon-sm {
    color: var(--amber);
    background: rgba(245, 158, 11, .12);
}

.skill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto;
}

.skill-icon-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── KPI icons ──────────────────────────────────────────────── */
.kpi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kpi-icon.color-cyan {
    color: var(--cyan);
    background: rgba(6, 182, 212, .12);
}

.kpi-icon.color-violet {
    color: #a78bfa;
    background: rgba(124, 58, 237, .12);
}

.kpi-icon.color-green {
    color: var(--green);
    background: rgba(16, 185, 129, .12);
}

.kpi-icon.color-amber {
    color: var(--amber);
    background: rgba(245, 158, 11, .12);
}

/* ── Timeline ───────────────────────────────────────────────── */
.ej-timeline {
    position: relative;
    padding-left: 28px;
}

.ej-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

[dir="rtl"] .ej-timeline {
    padding-left: 0;
    padding-right: 28px;
}

[dir="rtl"] .ej-timeline::before {
    left: auto;
    right: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    border: 2px solid var(--bg);
    box-shadow: 0 0 8px var(--cyan);
}

[dir="rtl"] .timeline-dot {
    left: auto;
    right: -24px;
}

/* ── Project Cards ──────────────────────────────────────────── */
.ej-project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, border-color .25s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.ej-project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, .35);
    color: inherit;
}

.ej-project-card .card-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s;
}

.ej-project-card:hover .card-thumb {
    transform: scale(1.05);
}

.thumb-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0d1424 0%, #162032 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, .05);
}

/* ── Form inputs ────────────────────────────────────────────── */
.ej-input {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid var(--border) !important;
    color: #e2e8f0 !important;
    border-radius: 8px;
}

.ej-input:focus {
    background: rgba(255, 255, 255, .06) !important;
    border-color: var(--cyan) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, .15) !important;
}

.ej-input::placeholder {
    color: #475569;
}

/* ── Auth tabs ──────────────────────────────────────────────── */
.ej-tabs {
    border-bottom: 1px solid var(--border);
}

.ej-tabs .nav-link {
    color: #94a3b8;
    border-radius: 8px 8px 0 0;
}

.ej-tabs .nav-link.active {
    background: var(--bg-card) !important;
    color: var(--cyan) !important;
    border-bottom: 2px solid var(--cyan);
}

/* ── Password toggle ────────────────────────────────────────── */
.btn-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
}

[dir="rtl"] .btn-pw-toggle {
    right: auto;
    left: 12px;
}

.btn-pw-toggle:hover {
    color: var(--cyan);
}

/* ── Admin sidebar ──────────────────────────────────────────── */
.ej-sidebar {
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    min-height: calc(100vh - 60px);
}

[dir="rtl"] .ej-sidebar {
    border-right: none;
    border-left: 1px solid var(--border);
}

.sidebar-link {
    color: #64748b;
    border-radius: 8px;
    padding: .5rem .75rem;
    transition: all .2s;
}

.sidebar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.sidebar-link.active {
    color: var(--cyan) !important;
    background: rgba(6, 182, 212, .1);
}

/* ── Form slide panel ───────────────────────────────────────── */
.ej-form-panel {
    position: fixed;
    top: 0;
    right: -520px;
    width: 500px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1050;
    transition: right .3s cubic-bezier(.16, 1, .3, 1);
    overflow-y: auto;
}

[dir="rtl"] .ej-form-panel {
    right: auto;
    left: -520px;
    border-left: none;
    border-right: 1px solid var(--border);
}

.ej-form-panel.open {
    right: 0;
}

[dir="rtl"] .ej-form-panel.open {
    right: auto;
    left: 0;
}

.ej-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1040;
}

.ej-panel-overlay.show {
    display: block;
}

/* ── Contact icon wrap ──────────────────────────────────────── */
.contact-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-cyan-subtle {
    background: rgba(6, 182, 212, .1);
}

/* ── Footer ─────────────────────────────────────────────────── */
.ej-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-link {
    display: block;
    color: #64748b;
    text-decoration: none;
    padding: .2rem 0;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--cyan);
}

.social-icon {
    color: #64748b;
    transition: color .2s;
}

.social-icon:hover {
    color: var(--cyan);
}

/* ── Prose (project detail content) ────────────────────────── */
.ej-prose h1,
.ej-prose h2,
.ej-prose h3 {
    color: #e2e8f0;
    margin-top: 1.5rem;
}

.ej-prose p {
    line-height: 1.8;
}

.ej-prose a {
    color: var(--cyan);
}

.ej-prose img {
    max-width: 100%;
    border-radius: 8px;
}

.ej-prose pre {
    background: #0d1424;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

/* ── Animations ─────────────────────────────────────────────── */
.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp .7s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bounce {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ── Table dark ─────────────────────────────────────────────── */
.table-dark {
    --bs-table-bg: var(--bg-card);
    --bs-table-border-color: var(--border);
}

.table-dark thead th {
    color: #64748b;
    font-weight: 500;
    font-size: .85rem;
    border-bottom: 1px solid var(--border);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
    .ej-form-panel {
        width: 100%;
        right: -110%;
    }

    [dir="rtl"] .ej-form-panel {
        left: -110%;
    }

    .ej-sidebar {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: auto !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid var(--border);
    }
}

.btn-outline-amber {
    border-color: var(--amber);
    color: var(--amber);
}

.btn-outline-amber:hover {
    background: var(--amber);
    color: #000;
}

.progress-bar.bg-amber {
    background-color: var(--amber) !important;
}

/* ── Blueprint Capsule ──────────────────────────────────────── */
.blueprint-capsule {
    padding: 1rem 1.25rem 1rem;
    background: rgba(6, 182, 212, .04);
    border: 1px solid rgba(6, 182, 212, .18);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(6, 182, 212, .06), inset 0 1px 0 rgba(255, 255, 255, .04);
    transition: border-color .3s;
}

.blueprint-capsule:hover {
    border-color: rgba(6, 182, 212, .35);
}

/* stream tag */
.bp-tag {
    font-size: .72rem;
    letter-spacing: .08em;
    opacity: .85;
}

/* pulsing dot */
.bp-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    display: inline-block;
    animation: bp-pulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 6px var(--cyan);
}

@keyframes bp-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

/* LIVE badge */
.bp-live {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #ef4444;
    text-transform: uppercase;
    animation: bp-live-blink 1.2s step-end infinite;
}

@keyframes bp-live-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

/* Randomize button */
.bp-rand-btn {
    background: rgba(6, 182, 212, .08);
    border: 1px solid rgba(6, 182, 212, .25);
    color: var(--cyan);
    border-radius: 20px;
    padding: .2rem .75rem;
    font-size: .72rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: background .2s, border-color .2s;
}

.bp-rand-btn:hover {
    background: rgba(6, 182, 212, .18);
    border-color: var(--cyan);
}

.bp-rand-btn i {
    transition: transform .3s;
}

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

/* View gallery button */
.bp-view-btn {
    font-size: .72rem;
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, .25);
    border-radius: 12px;
    padding: .2rem .7rem;
    transition: background .2s;
}

.bp-view-btn:hover {
    background: rgba(6, 182, 212, .1);
    color: var(--cyan);
}

/* ── 3-thumb grid ────────────────────────────────────────────── */
.bp-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #060b16;
    border: 1px solid rgba(6, 182, 212, .15);
}

.bp-card-lg {
    height: 280px;
}

.bp-card-sm {
    height: 134px;
}

@media (max-width: 767px) {
    .bp-card-lg {
        height: 220px;
    }

    .bp-card-sm {
        height: 110px;
    }
}

.bp-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    display: block;
    transition: border-color .25s;
    border-radius: 12px;
    overflow: hidden;
}

.bp-card:hover {
    border-color: rgba(6, 182, 212, .5);
    box-shadow: 0 0 20px rgba(6, 182, 212, .08);
}

.bp-card-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay */
.bp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .6rem;
    pointer-events: none;
}

/* Category tag (top) */
.bp-cat-tag {
    align-self: flex-start;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(6, 182, 212, .2);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, .35);
    border-radius: 4px;
    padding: .1rem .4rem;
}

/* Title + date (bottom) */
.bp-card-info {
    margin-top: auto;
}

.bp-card-title {
    font-size: .78rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-card-date {
    font-size: .62rem;
    color: rgba(255, 255, 255, .5);
    margin: .1rem 0 0;
}

/* Video badge */
.bp-vid-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
}

.bp-vid-badge i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, .9);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .5));
}

/* Scan line */
.bp-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .5), transparent);
    animation: bp-scan 3s linear infinite;
    pointer-events: none;
}

@keyframes bp-scan {
    0% {
        top: 0;
        opacity: 1
    }

    100% {
        top: 100%;
        opacity: 0
    }
}

/* Corner accents */
.bp-corner-tl,
.bp-corner-br {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--cyan);
    border-style: solid;
    opacity: .7;
}

.bp-corner-tl {
    top: 5px;
    left: 5px;
    border-width: 2px 0 0 2px;
    border-radius: 2px 0 0 0;
}

.bp-corner-br {
    bottom: 5px;
    right: 5px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 2px 0;
}

/* ── Gallery ──────────────────────────────────────────────── */

/* Media wrapper */
.bp-media-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    position: relative;
    background: #060b16;
    transition: opacity .3s;
}

/* Skeleton */
.bp-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0d1424 25%, #162032 50%, #0d1424 75%);
    background-size: 200% 100%;
    animation: bp-shimmer 1.5s infinite;
    border-radius: 10px;
}

@keyframes bp-shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* Image wrap */
.bp-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.blueprint-capsule:hover .bp-img-wrap img {
    transform: scale(1.04);
}

/* Video thumb */
.bp-video-thumb {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bp-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(2px);
}

.bp-play-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(6, 182, 212, .2);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, .4);
    transition: transform .2s, background .2s;
}

.bp-video-thumb:hover .bp-play-ring {
    transform: scale(1.12);
    background: rgba(6, 182, 212, .35);
}

/* Scan line animation */
.bp-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .6), transparent);
    animation: bp-scan 3s linear infinite;
    pointer-events: none;
}

@keyframes bp-scan {
    0% {
        top: 0;
        opacity: 1
    }

    100% {
        top: 100%;
        opacity: 0
    }
}

/* Corner decorations */
.bp-corner-tl,
.bp-corner-tr,
.bp-corner-bl,
.bp-corner-br {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--cyan);
    border-style: solid;
    opacity: .6;
}

.bp-corner-tl {
    top: 6px;
    left: 6px;
    border-width: 2px 0 0 2px;
    border-radius: 3px 0 0 0;
}

.bp-corner-tr {
    top: 6px;
    right: 6px;
    border-width: 2px 2px 0 0;
    border-radius: 0 3px 0 0;
}

.bp-corner-bl {
    bottom: 6px;
    left: 6px;
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 3px;
}

.bp-corner-br {
    bottom: 6px;
    right: 6px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 3px 0;
}

/* View gallery button */
.bp-view-btn {
    font-size: .72rem;
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, .25);
    border-radius: 12px;
    padding: .2rem .7rem;
    transition: background .2s;
}

.bp-view-btn:hover {
    background: rgba(6, 182, 212, .1);
    color: var(--cyan);
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-item {
    transition: transform .25s, border-color .25s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, .35) !important;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.06);
}

/* ── Upload progress ────────────────────────────────────────── */
.upload-progress .progress {
    background: rgba(255, 255, 255, .08);
}

.upload-progress .upload-status {
    font-size: .75rem;
}

/* ── Background dark-subtle ─────────────────────────────────── */
.bg-dark-subtle {
    background: rgba(255, 255, 255, .02) !important;
}