/* BASE STYLES & CUSTOM PROPERTIES */
:root {
    --primary-color: #007a87;
    --primary-hover: #005f69;
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-muted: #666666;
    --border-color: #e2e2e2;
    --border-focus: #007a87;
    --input-bg: #ffffff;
    
    /* Category grid colors */
    --purple-light: #e8e6f8;
    --beige-light: #fbf6d9;
    --pink-light: #ffe3e7;
    --blue-light: #e2eefd;
    
    /* Layout properties */
    --phone-width: 450px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f5f7;
    color: var(--text-primary);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

/* PHONE WRAPPER / CONTAINER (DESKTOP MOCKUP) */
.app-container {
    width: 100%;
    max-width: var(--phone-width);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 70px; /* Spacer for dev navbar */
}

/* HEADER STYLING */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f2f2f2;
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 100;
}

.logo {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
    user-select: none;
    transform: rotate(-1.5deg);
    display: inline-block;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color var(--transition-speed);
}

.menu-btn:hover {
    background-color: #f0f0f0;
}

/* SCREEN ROUTING & TRANSITIONS */
.screens-wrapper {
    flex-grow: 1;
    position: relative;
}

.screen {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-padding {
    padding: 20px 24px;
}

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

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

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-style-italic {
    font-style: italic;
}

.margin-bottom-sm {
    margin-bottom: 10px;
}

.mt-2 {
    margin-top: 15px;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

/* TITLES */
.main-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #000000;
}

.center-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* CATEGORY GRID (SCREEN 1) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 20px;
    background-color: #ffffff;
}

.grid-card {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 8px;
    transition: transform 0.2s ease;
}

.grid-card:hover {
    transform: scale(1.02);
}

.grid-icon {
    width: 75%;
    height: 75%;
    display: block;
}

/* Card background presets */
.bg-purple { background-color: var(--purple-light); }
.bg-beige { background-color: var(--beige-light); }
.bg-pink { background-color: var(--pink-light); }
.bg-blue { background-color: var(--blue-light); }

.empty-card {
    opacity: 0.8;
}

/* Heart button overlays */
.heart-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background-color 0.2s;
}

.heart-btn:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

.heart-btn svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* FORMS AND INPUTS */
.auth-form, .details-form, .bank-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--input-bg);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input::placeholder {
    color: #999999;
}

.form-group input:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 122, 135, 0.08);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .col {
    flex: 1;
}

/* CVC field adjustments with relative eye icon */
.relative {
    position: relative;
}

.cvc-container {
    position: relative;
    display: flex;
    align-items: center;
}

.cvc-container input {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    padding: 4px;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.toggle-password:hover {
    opacity: 0.8;
}

/* BUTTONS */
.btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform 0.1s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 122, 135, 0.25);
}

.btn-primary:active {
    transform: scale(0.98);
}

.gradient-btn {
    background: linear-gradient(135deg, #09b1ba 0%, #007a87 100%);
}

.btn-play {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.play-icon {
    display: block;
}

/* SCREEN 2 SPECIFICS */
.banner-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.transaction-id {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 24px;
}

.success-checkmark-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #28a745;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark-svg {
    width: 64px;
    height: 64px;
}

.checkmark-circle-track {
    stroke: none;
}

.checkmark-check-path {
    stroke: #28a745;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.6s ease-in-out forwards 0.2s;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.instructions-list {
    list-style-type: none;
    text-align: left;
    margin: 28px 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instructions-list li {
    display: flex;
    gap: 8px;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.45;
}

.instructions-list .step-num {
    font-weight: 800;
    color: #1a1a1a;
    flex-shrink: 0;
}

/* SCREEN 3 SPECIFICS */
.card-icon-header {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.header-card-svg {
    width: 64px;
    height: 64px;
}

.secure-banner {
    background-color: #f6f6f6;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
}

.secure-banner-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.secure-banner-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* SCREEN 4 SPECIFICS */
.info-container-box {
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    font-size: 13px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.bank-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    aspect-ratio: 1 / 1.15;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
    text-align: center;
}

.bank-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.bank-card:active {
    transform: scale(0.97);
}

.bank-logo-wrap {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bank-logo-svg {
    max-width: 80%;
    max-height: 80%;
}

.bank-name {
    font-size: 9px;
    font-weight: 500;
    color: #333333;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Vector bank logo details */
.sg-logo {
    width: 24px;
    height: 24px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sg-red {
    background-color: #FF0000;
    color: #ffffff;
    font-weight: 800;
    font-size: 7px;
    height: 12px;
    line-height: 12px;
    text-align: center;
}
.sg-black {
    background-color: #000000;
    height: 12px;
}

.bp-logo {
    display: flex;
    flex-direction: column;
    font-size: 6px;
    line-height: 1;
    color: #0F2D69;
    text-align: center;
}
.bp-txt-bold {
    font-weight: 800;
}

.ccf-logo {
    font-weight: 800;
    font-size: 13px;
    color: #0C2340;
}

.lcl-logo {
    background-color: #002D62;
    padding: 2px 6px;
    border-radius: 2px;
}
.lcl-txt {
    color: #FFCC00;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: -0.5px;
}

.ce-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ce-txt {
    background-color: #D32F2F;
    color: white;
    font-weight: 800;
    font-size: 8px;
    padding: 0 4px;
    border-radius: 2px;
}
.ce-desc {
    font-size: 4px;
    color: #333333;
}

.bp-postale-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #0A1C40;
    font-size: 6px;
    text-align: center;
}
.bpp-txt-post {
    font-weight: 800;
    color: #EFA600;
}

.cm-logo {
    width: 20px;
    height: 20px;
    background-color: #D32F2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cm-circle {
    color: white;
    font-weight: 800;
    font-size: 10px;
}

.hb-logo {
    background-color: #00A6FF;
    color: white;
    font-weight: 700;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 4px;
    letter-spacing: -0.2px;
}

.bnp-logo {
    font-weight: 800;
    font-size: 7px;
    color: #006643;
    display: flex;
    align-items: center;
    gap: 1px;
}
.bnp-star {
    color: #00A650;
    font-size: 9px;
}

.bourso-logo {
    background-color: #E2007A;
    color: white;
    font-weight: 800;
    font-size: 7px;
    padding: 2px 4px;
}

.cic-logo {
    background-color: #002D62;
    color: white;
    font-weight: 800;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
}

.bank-temple-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-note-text {
    font-size: 12px;
    color: #777777;
    line-height: 1.4;
}

/* SCREEN 5 SPECIFICS */
.secure-gray-box {
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: #555555;
    line-height: 1.45;
    margin-bottom: 20px;
}

.bank-illustration-wrapper {
    display: flex;
    justify-content: center;
    margin: 16px 0 24px 0;
}

.bank-large-svg {
    width: 100px;
    height: 80px;
}

.orange-alert-box {
    border: 1px solid #007a87;
    background-color: #f4fbfc;
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
}

.alert-box-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.alert-box-text {
    font-size: 13px;
    color: #444444;
    line-height: 1.45;
}

/* SCREEN 6 SPECIFICS */
.status-indicator-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    background-color: #ffffff;
}

.status-right-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.battery-icon {
    width: 22px;
    height: 11px;
    border: 1.5px solid #000000;
    border-radius: 3px;
    padding: 1px;
    position: relative;
    display: flex;
    align-items: center;
}

.battery-body {
    background-color: #28a745;
    height: 100%;
    width: 57%; /* Displays 57% */
    border-radius: 1px;
}

.battery-tip {
    width: 1.5px;
    height: 4px;
    background-color: #000000;
    position: absolute;
    right: -3px;
    top: 2px;
    border-radius: 0 1px 1px 0;
}

.loading-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.2s infinite ease-in-out;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.2s; }
.dot-3 { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.orange-alert-box-thin {
    border: 1px solid #bfeef2;
    background-color: #f4fbfc;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #444444;
    line-height: 1.45;
    margin-bottom: 14px;
}

.agent-illustration-wrapper {
    display: flex;
    justify-content: center;
    margin: 14px 0;
}

.agent-svg {
    width: 100px;
    height: 100px;
}

.red-warning-box {
    background-color: #ffebee;
    border: 1.5px solid #ffcdd2;
    color: #b71c1c;
    border-radius: 10px;
    padding: 14px;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 14px;
    margin-bottom: 14px;
}

/* PERSISTENT DEMO NAVIGATION BAR */
.preview-navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 12px 10px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 0 0 16px 16px;
    z-index: 1000;
}

/* Desktop container override */
@media(max-width: 480px) {
    body {
        background-color: #ffffff;
    }
    .app-container {
        box-shadow: none;
        border: none;
        border-radius: 0;
    }
    .preview-navbar {
        position: fixed;
        border-radius: 0;
    }
}

.preview-navbar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #a0a0a0;
    padding-left: 4px;
}

.preview-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.preview-btn {
    background-color: #333333;
    border: 1px solid #444444;
    color: #dddddd;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 2px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    outline: none;
}

.preview-btn:hover {
    background-color: #444444;
    color: #ffffff;
}

.preview-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* VINTED SPECIFIC STYLES FOR SCREEN 1 */
.vinted-search-bar-container {
    padding: 10px 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #ebedee;
}

.vinted-search-bar {
    display: flex;
    background-color: #f2f4f5;
    border-radius: 8px;
    height: 38px;
    align-items: center;
}

.search-category-select {
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #111111;
    border-right: 1px solid #d4d6d7;
    height: 60%;
    gap: 4px;
    cursor: pointer;
    font-weight: 500;
}

.arrow-down-svg {
    color: #757575;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 0 12px;
    gap: 8px;
    height: 100%;
}

.search-icon-svg {
    color: #757575;
    flex-shrink: 0;
}

.search-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #757575;
    width: 100%;
    font-family: inherit;
}

.vinted-login-container {
    padding: 28px 16px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.vinted-login-card {
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    padding: 42px 24px;
    width: 100%;
}

.vinted-login-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
    color: #111111;
    letter-spacing: -0.3px;
}

.vinted-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vinted-form-group {
    position: relative;
    border-bottom: 1.5px solid #ebedee;
    transition: border-color 0.2s;
}

.vinted-form-group:focus-within {
    border-color: #007a87;
}

.vinted-form-group input {
    width: 100%;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #111111;
    font-family: inherit;
}

.vinted-form-group input::placeholder {
    color: #757575;
}

.password-group input {
    padding-right: 36px;
}

.vinted-toggle-password {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.vinted-btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 4px;
    background-color: #007a87;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.2s, transform 0.1s;
    text-align: center;
}

.vinted-btn-submit:hover {
    background-color: #005f69;
}

.vinted-btn-submit:active {
    transform: scale(0.99);
}

.vinted-login-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.vinted-link {
    color: #007a87;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.vinted-link:hover {
    text-decoration: underline;
}

/* ============================================================ */
/* RECAP SCREEN                                                  */
/* ============================================================ */
.recap-card {
    background: #ffffff;
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.recap-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #007a87;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f7f7f7;
    gap: 8px;
}

.recap-row:last-child {
    border-bottom: none;
}

.recap-label {
    font-size: 13px;
    color: #888888;
    font-weight: 500;
    flex-shrink: 0;
}

.recap-value {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

/* ============================================================ */
/* LOADING SCREEN                                                */
/* ============================================================ */
.loading-screen-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding-top: 40px;
}

/* Spinner ring */
.loading-spinner-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.loading-spinner-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 6px solid #007a87;
    border-radius: 50%;
    animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #007a87 transparent transparent transparent;
}

.loading-spinner-ring div:nth-child(1) { animation-delay: -0.45s; }
.loading-spinner-ring div:nth-child(2) { animation-delay: -0.3s; }
.loading-spinner-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes loading-ring {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progress bar */
.loading-progress-wrap {
    width: 100%;
    max-width: 280px;
    height: 8px;
    background: #e8e8e8;
    border-radius: 100px;
    overflow: hidden;
    margin: 20px auto 8px auto;
}

.loading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #09b1ba, #007a87);
    border-radius: 100px;
    transition: width 0.9s ease;
}

/* Recap screen vertical centering */
.screen-recap-wrapper.active {
    min-height: calc(100vh - 60px);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.screen-recap-wrapper .content-padding {
    width: 100%;
}


.loading-countdown {
    font-size: 28px;
    font-weight: 800;
    color: #007a87;
    margin-top: 6px;
    font-variant-numeric: tabular-nums;
}



