/* ==========================================================================
   Instagram Reels Downloader Agent - Style System
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-dark: hsl(230, 24%, 6%);
    --bg-card: hsla(230, 24%, 10%, 0.65);
    --bg-card-hover: hsla(230, 24%, 13%, 0.8);
    --bg-input: hsla(230, 24%, 4%, 0.6);
    --border-color: hsla(230, 20%, 20%, 0.4);
    --border-hover: hsla(230, 25%, 35%, 0.6);
    
    /* Text colors */
    --text-primary: hsl(0, 0%, 98%);
    --text-secondary: hsl(230, 12%, 75%);
    --text-muted: hsl(230, 10%, 55%);
    
    /* Brand & Gradient Accents */
    --insta-yellow: #FCAF45;
    --insta-orange: #F77737;
    --insta-pink: #E1306C;
    --insta-purple: #C13584;
    --insta-violet: #833AB4;
    --insta-blue: #405DE6;
    
    --grad-insta: linear-gradient(135deg, var(--insta-yellow) 0%, var(--insta-orange) 25%, var(--insta-pink) 50%, var(--insta-purple) 75%, var(--insta-violet) 100%);
    --grad-insta-glow: linear-gradient(135deg, rgba(252,175,69,0.3) 0%, rgba(247,119,55,0.3) 25%, rgba(225,48,108,0.3) 50%, rgba(193,53,132,0.3) 75%, rgba(131,58,180,0.3) 100%);
    --grad-dark-btn: linear-gradient(135deg, hsl(230, 15%, 15%) 0%, hsl(230, 15%, 10%) 100%);
    
    /* Functional Colors */
    --color-success: #2ec4b6;
    --color-warning: #ffb703;
    --color-danger: #e63946;
    --color-info: #00b4d8;
    
    /* Structural variables */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px -5px rgba(225, 48, 108, 0.4);
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Glowing Background Animations */
.insta-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.22;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.glow-orange {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--insta-orange) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatGlow1 22s infinite ease-in-out alternate;
}

.glow-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--insta-purple) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: floatGlow2 28s infinite ease-in-out alternate;
}

.glow-pink {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--insta-pink) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation: floatGlow3 25s infinite ease-in-out alternate;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-100px, -120px) scale(0.9); }
}

@keyframes floatGlow3 {
    0% { transform: translate(0, 0) scale(0.9); }
    100% { transform: translate(-80px, 100px) scale(1.2); }
}

/* Layout Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Header Component */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-premium);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad-insta);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -6px rgba(225, 48, 108, 0.6);
}

.brand-logo i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.brand-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1.1;
}

.brand-text h1 span {
    background: var(--grad-insta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.brand-text .tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: hsla(230, 20%, 4%, 0.5);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.idle .status-dot {
    background-color: var(--color-success);
    box-shadow: 0 0 10px var(--color-success);
}

.status-indicator.active .status-dot {
    background-color: var(--color-warning);
    box-shadow: 0 0 10px var(--color-warning);
    animation: pulse 1.2s infinite alternate;
}

.status-indicator.error .status-dot {
    background-color: var(--color-danger);
    box-shadow: 0 0 10px var(--color-danger);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 1; }
}

/* Control Console (Input Section) */
.console-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.console-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-insta);
}

.console-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.console-card h2 i {
    background: var(--grad-insta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-tip {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Input Form */
.url-input-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    font-size: 1.2rem;
    color: var(--insta-pink);
}

.input-group input {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1.2rem 4rem 1.2rem 3.2rem;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.input-group input:focus {
    outline: none;
    border-color: var(--insta-pink);
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.15);
}

.btn-secondary {
    position: absolute;
    right: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 0.6rem 0.8rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--grad-insta);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -5px rgba(225, 48, 108, 0.6);
}

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

.hidden {
    display: none !important;
}

/* Linear Progress Bar for Scraper */
.processing-progress-container {
    margin-top: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1.5rem;
}

.progress-track {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--grad-insta);
    border-radius: 10px;
    transition: width 0.4s ease-out;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Result Preview Component */
.result-section {
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-title h2 i {
    color: var(--color-success);
}

.result-layout {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--shadow-premium);
}

@media (min-width: 768px) {
    .result-layout {
        grid-template-columns: 350px 1fr;
    }
}

.result-preview {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 9 / 16;
}

@media (min-width: 768px) {
    .result-preview {
        aspect-ratio: auto;
        min-height: 480px;
        border-right: 1px solid var(--border-color);
    }
}

.video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Result Info Panel */
.result-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-insta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.platform-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.duration-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.reel-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.reel-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-badge i {
    color: var(--insta-pink);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .action-buttons {
        flex-direction: row;
    }
}

.btn-download-action {
    flex: 1;
    background: var(--grad-insta);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
}

.btn-download-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -4px rgba(225, 48, 108, 0.7);
}

.btn-secondary-action {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
}

.btn-secondary-action:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

/* Console logs / Terminal component */
.console-logs-section {
    background: #050609;
    border: 1px solid #141722;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.console-logs-header {
    background: #0f111a;
    border-bottom: 1px solid #141722;
    padding: 0.8rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.console-logs-header:hover {
    background: #131622;
}

.console-logs-header h3 {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.console-logs-header h3 i {
    color: var(--insta-orange);
}

.console-logs-header button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.console-logs-body {
    max-height: 250px;
    overflow-y: auto;
    padding: 1.2rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.console-logs-body.collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
    overflow: hidden;
}

.logs-container {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.log-item {
    color: var(--text-secondary);
    line-height: 1.4;
    word-break: break-all;
}

.log-item.system { color: var(--color-info); }
.log-item.success { color: var(--color-success); }
.log-item.warn { color: var(--color-warning); }
.log-item.error { color: var(--color-danger); }

/* History Catalog Grid */
.history-section {
    margin-top: 2rem;
}

.history-count {
    font-size: 0.8rem;
    background: hsla(230, 20%, 4%, 0.5);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
    font-weight: 700;
    color: var(--text-muted);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 576px) {
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .history-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.history-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.history-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.history-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.card-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
    overflow: hidden;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.history-card:hover .card-thumbnail img {
    transform: scale(1.05);
    opacity: 0.95;
}

.card-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(225, 48, 108, 0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
    pointer-events: none;
}

.history-card:hover .card-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.card-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.75);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-uploader {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--insta-pink);
    margin-bottom: 0.4rem;
}

.card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

.btn-card-download {
    background: var(--grad-insta);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.btn-card-download:hover {
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.btn-card-delete {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.4rem;
    transition: var(--transition-smooth);
    border-radius: 6px;
}

.btn-card-delete:hover {
    color: var(--color-danger);
    background: rgba(230, 57, 70, 0.1);
}

/* User Badge in Header */
.status-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-badge-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: hsla(230, 20%, 4%, 0.4);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.82rem;
    color: var(--text-primary);
}

.user-badge-header span i {
    color: var(--color-success);
}

.btn-logout {
    color: var(--color-danger);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border-left: 1px solid var(--border-color);
    padding-left: 0.8rem;
}

.btn-logout:hover {
    color: #ff4d6d;
    text-shadow: 0 0 8px rgba(230, 57, 70, 0.4);
}

/* ==========================================================================
   Mobile & Tablet Responsiveness
   ========================================================================== */

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }
    
    .status-panel {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .console-card {
        padding: 1.75rem 1.5rem;
    }
    
    .result-info {
        padding: 1.75rem 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-download-action, 
    .btn-secondary-action {
        width: 100%;
        padding: 1.1rem 1.5rem;
    }
    
    .history-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .brand-text h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .brand-logo i {
        font-size: 1.4rem;
    }
    
    .console-card h2 {
        font-size: 1.3rem;
    }
    
    .input-group input {
        padding: 1rem 3.5rem 1rem 2.75rem;
        font-size: 0.92rem;
        border-radius: 12px;
    }
    
    .input-icon {
        left: 1rem;
        font-size: 1.05rem;
    }
    
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .login-container {
        padding: 2.25rem 1.5rem;
        border-radius: var(--border-radius-md);
    }
    
    .user-badge-header {
        width: 100%;
        justify-content: space-between;
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn-logout {
        padding-left: 0.6rem;
    }
    
    .status-indicator {
        width: 100%;
        justify-content: center;
        padding: 0.4rem 1rem;
    }
    
    .direct-download-note {
        font-size: 0.78rem !important;
        padding: 0.6rem 0.8rem !important;
    }
}


