/* =========================================================
   LUTHERBET
   WITHDRAW PAGE
========================================================= */

.withdraw-page {
    --wd-bg: var(--bg-panel);
    --wd-card: var(--bg-panel);
    --wd-card-dark: var(--bg-panel);

    --wd-border: var(--border);
    --wd-gold-border: rgba(var(--primary-rgb), .42);

    --wd-text: var(--text-primary);
    --wd-muted: var(--text-muted);
    --wd-muted-2: var(--text-dim);

    --wd-gold: var(--primary);
    --wd-gold-light: var(--primary-light);
    --wd-gold-dark: var(--primary-dark);

    --wd-success: var(--success);
    --wd-danger: var(--danger);

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 4px 0 34px;

    color: var(--wd-text);
}


/* =========================================================
   HEADER
========================================================= */

.withdraw-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
    margin-bottom: 20px;
}

.withdraw-page-heading {
    min-width: 0;
}

.withdraw-page-kicker {
    display: inline-flex;
    align-items: center;

    min-height: 22px;

    margin-bottom: 7px;
    padding: 0 9px;

    border: 1px solid rgba(var(--primary-rgb), .18);
    border-radius: 999px;

    color: var(--wd-gold-light);
    background: rgba(var(--primary-rgb), .05);

    font-size: .58rem;
    font-weight: 900;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.withdraw-page-heading h1 {
    margin: 0;

    color: var(--text-primary);

    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 900;

    line-height: 1.1;
    letter-spacing: -.035em;
}

.withdraw-page-heading p {
    max-width: 600px;

    margin: 8px 0 0;

    color: var(--wd-muted);

    font-size: .78rem;
    line-height: 1.55;
}

.withdraw-page-security {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 34px;

    padding: 0 11px;

    border: 1px solid rgba(var(--success-rgb), .16);
    border-radius: 9px;

    color: var(--success);
    background: rgba(var(--success-rgb), .055);

    font-size: .65rem;
    font-weight: 800;
}

.withdraw-page-security i {
    font-size: 1rem;
}


/* =========================================================
   FILTERS
========================================================= */

.withdraw-filters {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    overflow-x: auto;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.withdraw-filters::-webkit-scrollbar {
    display: none;
}

.withdraw-filter {
    flex: 0 0 auto;

    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 14px;

    border: 1px solid var(--wd-border);
    border-radius: 10px;

    color: var(--text-muted);
    background: var(--glass-bg-subtle);

    font-family: inherit;
    font-size: .68rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        border-color .18s ease,
        color .18s ease,
        background .18s ease;
}

.withdraw-filter i {
    font-size: .95rem;
}

.withdraw-filter:hover {
    color: var(--text-primary);

    border-color: rgba(var(--primary-rgb), .22);

    background: rgba(var(--primary-rgb), .045);
}

.withdraw-filter.is-active {
    color: var(--text-inverse);

    border-color: rgba(var(--primary-rgb), .62);

    background:
        linear-gradient(
            180deg,
            var(--primary-light) 0%,
            var(--primary) 55%,
            var(--primary-dark) 100%
        );

    box-shadow:
        inset 0 1px rgba(var(--primary-rgb),.42),
        0 7px 18px rgba(var(--primary-rgb), .16);
}


/* =========================================================
   GLOBAL ALERT
========================================================= */

.withdraw-page-alert {
    margin-bottom: 13px;

    padding: 11px 13px;

    border: 1px solid rgba(var(--danger-rgb), .22);
    border-radius: 10px;

    color: var(--danger-light);
    background: rgba(var(--danger-rgb), .075);

    font-size: .72rem;
    line-height: 1.5;
}

.withdraw-page-alert.is-success {
    border-color: rgba(var(--success-rgb), .24);

    color: var(--success-light);
    background: rgba(var(--success-rgb), .07);
}


/* =========================================================
   METHOD LIST
========================================================= */

.withdraw-method-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    align-items: start;
}


/* =========================================================
   METHOD CARD
========================================================= */

.withdraw-method-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--wd-border);
    border-radius: 13px;

    background:
        linear-gradient(
            180deg,
            var(--bg-panel) 0%,
            var(--bg-panel) 100%
        );

    box-shadow:
        0 10px 28px rgba(0,0,0,.15);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.withdraw-method-card:hover {
    border-color: rgba(var(--primary-rgb), .18);
}

.withdraw-method-card.is-open {
    border-color: var(--wd-gold-border);

    box-shadow:
        0 14px 35px rgba(0,0,0,.25),
        0 0 0 1px rgba(var(--primary-rgb), .035);
}


/* =========================================================
   SUMMARY
========================================================= */

.withdraw-method-summary {
    position: relative;

    display: grid;

    grid-template-columns:
        62px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 12px;

    min-height: 90px;

    padding: 13px 14px 11px;
}


/* =========================================================
   LOGO
========================================================= */

.withdraw-method-logo {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid var(--border-subtle);
    border-radius: 11px;

    background: var(--text-primary);
}

.withdraw-method-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 5px;
}


/* =========================================================
   METHOD INFORMATION
========================================================= */

.withdraw-method-main {
    min-width: 0;
}

.withdraw-method-name {
    display: block;

    overflow: hidden;

    margin-bottom: 5px;

    color: var(--text-primary);

    font-size: .79rem;
    font-weight: 900;

    line-height: 1.2;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.withdraw-method-time {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-bottom: 7px;

    color: var(--text-muted);

    font-size: .59rem;
    font-weight: 700;
}

.withdraw-method-time i {
    color: var(--wd-gold);

    font-size: .78rem;
}


/* =========================================================
   LIMITS
========================================================= */

.withdraw-method-limits {
    display: flex;
    align-items: center;

    gap: 5px;

    flex-wrap: wrap;
}

.withdraw-method-limits > span:not(
    .withdraw-limit-separator
) {
    display: inline-flex;
    align-items: baseline;

    gap: 3px;
}

.withdraw-method-limits small {
    color: var(--text-dim);

    font-size: .51rem;
    font-weight: 700;
}

.withdraw-method-limits b {
    color: var(--text-secondary);

    font-size: .59rem;
    font-weight: 800;
}

.withdraw-limit-separator {
    color: var(--text-dim);

    font-size: .54rem;
}


/* =========================================================
   TYPE BADGE
========================================================= */

.withdraw-method-type {
    align-self: flex-start;

    padding-top: 2px;
}

.withdraw-method-type span {
    display: inline-flex;
    align-items: center;

    min-height: 21px;

    padding: 0 7px;

    border: 1px solid rgba(var(--primary-rgb), .15);
    border-radius: 999px;

    color: var(--primary);
    background: rgba(var(--primary-rgb), .045);

    font-size: .47rem;
    font-weight: 900;

    white-space: nowrap;
    text-transform: uppercase;
}


/* =========================================================
   OPEN / CLOSE BUTTON
========================================================= */

.withdraw-method-toggle {
    width: calc(100% - 28px);

    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin: 0 14px 13px;
    padding: 0 12px;

    border:
        1px solid
        var(--border-strong);

    border-radius: 9px;

    color: var(--text-secondary);

    background:
        var(--glass-bg-subtle);

    font-family: inherit;

    font-size: .63rem;
    font-weight: 850;

    letter-spacing: .055em;

    cursor: pointer;

    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}

.withdraw-method-toggle:hover {
    color: var(--text-primary);

    border-color: rgba(var(--primary-rgb), .25);

    background: rgba(var(--primary-rgb), .05);
}

.withdraw-method-toggle i {
    font-size: .95rem;

    transition: transform .2s ease;
}

.withdraw-method-card.is-open
.withdraw-method-toggle i {
    transform: rotate(180deg);
}


/* =========================================================
   EXPANDED AREA
========================================================= */

.withdraw-method-expand {
    border-top:
        1px solid
        var(--glass-bg-medium);

    background:
        rgba(0,0,0,.08);
}

.withdraw-method-expand[hidden] {
    display: none !important;
}

.withdraw-method-expand-inner {
    padding: 16px 14px 14px;
}


/* =========================================================
   FIELD
========================================================= */

.withdraw-field {
    margin-bottom: 14px;
}

.withdraw-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--text-muted);

    font-size: .59rem;
    font-weight: 750;

    letter-spacing: .075em;
    text-transform: uppercase;
}


/* =========================================================
   SELECT
========================================================= */

.withdraw-select-wrap {
    position: relative;

    min-height: 46px;

    display: flex;
    align-items: center;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: var(--bg-deep);

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.withdraw-select-wrap:focus-within {
    border-color: rgba(var(--primary-rgb), .62);

    box-shadow:
        0 0 0 2px
        rgba(var(--primary-rgb), .07);
}

.withdraw-select-wrap select {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 46px;

    padding:
        0
        38px
        0
        13px;

    border: 0;
    outline: 0;

    color: var(--text-primary);
    background: transparent;

    font-family: inherit;
    font-size: .72rem;
    font-weight: 700;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

.withdraw-select-wrap select option {
    color: var(--text-secondary);
    background: var(--bg-panel);
}

.withdraw-select-wrap > i {
    position: absolute;

    top: 50%;
    right: 12px;

    z-index: 1;

    color: var(--text-muted);

    font-size: 1rem;

    pointer-events: none;

    transform: translateY(-50%);
}


/* =========================================================
   IBAN INPUT
========================================================= */

.withdraw-iban-input {
    min-height: 46px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: var(--bg-deep);

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.withdraw-iban-input:focus-within {
    border-color: rgba(var(--primary-rgb), .52);

    box-shadow:
        0 0 0 2px
        rgba(var(--primary-rgb), .06);
}

.withdraw-iban-input input {
    width: 100%;
    height: 44px;

    padding: 0;

    border: 0;
    outline: 0;

    color: var(--text-primary);
    background: transparent;

    font-family: inherit;

    font-size: .73rem;
    font-weight: 750;

    letter-spacing: .03em;

    text-transform: uppercase;
}

.withdraw-iban-input input::placeholder {
    color: var(--text-dim);

    text-transform: none;
}


/* =========================================================
   AMOUNT INPUT
========================================================= */

.withdraw-amount-input {
    min-height: 46px;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 7px;

    padding: 0 12px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    background: var(--bg-deep);

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.withdraw-amount-input:focus-within {
    border-color: rgba(var(--primary-rgb), .52);

    box-shadow:
        0 0 0 2px
        rgba(var(--primary-rgb), .06);
}

.withdraw-currency-symbol {
    color: var(--wd-gold);

    font-size: .95rem;
    font-weight: 900;
}

.withdraw-amount-input input {
    width: 100%;
    min-width: 0;

    height: 44px;

    padding: 0;

    border: 0;
    outline: 0;

    color: var(--text-primary);
    background: transparent;

    font-family: inherit;

    font-size: .75rem;
    font-weight: 800;
}

.withdraw-amount-input input::placeholder {
    color: var(--text-dim);

    font-weight: 600;
}

.withdraw-currency-code {
    color: var(--text-dim);

    font-size: .57rem;
    font-weight: 850;
}

.withdraw-amount-input input::-webkit-outer-spin-button,
.withdraw-amount-input input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

.withdraw-amount-input input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}


/* =========================================================
   REMOVE YELLOW INNER INPUT OUTLINE
========================================================= */

.withdraw-iban-input input:focus,
.withdraw-iban-input input:focus-visible,
.withdraw-amount-input input:focus,
.withdraw-amount-input input:focus-visible,
.withdraw-select-wrap select:focus,
.withdraw-select-wrap select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}


/* =========================================================
   QUICK AMOUNTS
========================================================= */

.withdraw-quick-amounts {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 6px;

    margin:
        -4px
        0
        12px;
}

.withdraw-quick-amounts button {
    min-height: 32px;

    padding: 0 5px;

    border:
        1px solid
        var(--glass-bg-medium);

    border-radius: 8px;

    color: var(--text-muted);

    background:
        var(--glass-bg-subtle);

    font-family: inherit;

    font-size: .55rem;
    font-weight: 850;

    cursor: pointer;

    transition:
        border-color .16s ease,
        color .16s ease,
        background .16s ease;
}

.withdraw-quick-amounts button:hover {
    color: var(--wd-gold-light);

    border-color:
        rgba(var(--primary-rgb), .25);

    background:
        rgba(var(--primary-rgb), .055);
}


/* =========================================================
   MESSAGE
========================================================= */

.withdraw-method-message {
    margin-bottom: 10px;

    padding: 9px 10px;

    border:
        1px solid
        rgba(var(--danger-rgb), .19);

    border-radius: 8px;

    color: var(--danger-light);

    background:
        rgba(var(--danger-rgb), .06);

    font-size: .6rem;
    line-height: 1.45;
}

.withdraw-method-message.is-success {
    border-color:
        rgba(var(--success-rgb), .2);

    color: var(--success);

    background:
        rgba(var(--success-rgb), .06);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.withdraw-submit {
    width: 100%;

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 14px;

    border:
        1px solid
        rgba(var(--primary-rgb), .62);

    border-radius: 10px;

    color: var(--text-inverse);

    background:
        linear-gradient(
            180deg,
            var(--primary-light) 0%,
            var(--primary) 58%,
            var(--primary-dark) 100%
        );

    box-shadow:
        inset
        0
        1px
        rgba(var(--primary-rgb),.42),

        0
        8px
        22px
        rgba(var(--primary-rgb), .2);

    font-family: inherit;

    font-size: .66rem;
    font-weight: 950;

    letter-spacing: .06em;

    cursor: pointer;

    transition:
        filter .18s ease,
        transform .18s ease,
        opacity .18s ease;
}

.withdraw-submit:hover {
    filter: brightness(1.06);
}

.withdraw-submit:active {
    transform: scale(.992);
}

.withdraw-submit:disabled {
    opacity: .55;

    cursor: wait;
}

.withdraw-submit i {
    font-size: 1rem;
}


/* =========================================================
   RESULT
========================================================= */

.withdraw-result {
    margin:
        0
        14px
        14px;

    padding: 13px;

    border:
        1px solid
        rgba(var(--success-rgb), .19);

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            rgba(var(--success-rgb), .065),
            rgba(var(--success-rgb), .025)
        );
}

.withdraw-result[hidden] {
    display: none !important;
}

.withdraw-result-head {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 12px;
}

.withdraw-result-check {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--primary-dark);
    background: var(--success);

    font-size: 1rem;
    font-weight: 900;
}

.withdraw-result-head strong {
    display: block;

    color: var(--success-light);

    font-size: .69rem;
}

.withdraw-result-head small {
    display: block;

    margin-top: 2px;

    color: var(--text-dim);

    font-size: .53rem;
}

.withdraw-result-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 7px;
}

.withdraw-result-grid > div {
    min-width: 0;

    padding: 9px;

    border:
        1px solid
        var(--glass-bg-subtle);

    border-radius: 8px;

    background:
        rgba(0,0,0,.12);
}

.withdraw-result-grid span {
    display: block;

    margin-bottom: 3px;

    color: var(--text-dim);

    font-size: .48rem;
    font-weight: 700;

    text-transform: uppercase;
}

.withdraw-result-grid strong {
    display: block;

    color: var(--text-secondary);

    font-size: .59rem;
    font-weight: 800;

    line-height: 1.4;

    overflow-wrap: anywhere;
}


/* =========================================================
   LOADING
========================================================= */

.withdraw-loading {
    grid-column: 1 / -1;

    min-height: 150px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border:
        1px dashed
        var(--border);

    border-radius: 12px;

    color: var(--text-dim);

    background:
        var(--glass-bg-subtle);

    font-size: .68rem;
}

.withdraw-loading i {
    color: var(--wd-gold);

    font-size: 1.35rem;
}


/* =========================================================
   EMPTY
========================================================= */

.withdraw-empty {
    min-height: 180px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    margin-top: 10px;
    padding: 20px;

    border:
        1px dashed
        var(--border);

    border-radius: 12px;

    text-align: center;

    background:
        var(--glass-bg-subtle);
}

.withdraw-empty[hidden] {
    display: none !important;
}

.withdraw-empty-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 9px;

    border-radius: 11px;

    color: var(--wd-gold);

    background:
        rgba(var(--primary-rgb), .075);

    font-size: 1.3rem;
}

.withdraw-empty strong {
    color: var(--text-secondary);

    font-size: .72rem;
}

.withdraw-empty p {
    max-width: 340px;

    margin: 5px 0 0;

    color: var(--text-dim);

    font-size: .58rem;
    line-height: 1.5;
}


/* =========================================================
   INFO
========================================================= */

.withdraw-info-box {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 16px;
    padding: 12px 13px;

    border:
        1px solid
        rgba(var(--primary-rgb), .08);

    border-radius: 10px;

    background:
        rgba(var(--primary-rgb), .025);
}

.withdraw-info-icon {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: var(--wd-gold);

    background:
        rgba(var(--primary-rgb), .07);

    font-size: .95rem;
}

.withdraw-info-box strong {
    display: block;

    color: var(--text-secondary);

    font-size: .62rem;
}

.withdraw-info-box p {
    margin: 4px 0 0;

    color: var(--text-dim);

    font-size: .55rem;
    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .withdraw-method-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .withdraw-page {
        padding:
            0
            0
            24px;
    }

    .withdraw-page-head {
        margin-bottom: 15px;
    }

    .withdraw-page-security {
        display: none;
    }

    .withdraw-page-heading h1 {
        font-size: 1.45rem;
    }

    .withdraw-page-heading p {
        font-size: .68rem;
    }

    .withdraw-filter {
        min-height: 35px;

        padding: 0 11px;

        border-radius: 9px;

        font-size: .59rem;
    }

    .withdraw-method-list {
        gap: 9px;
    }

    .withdraw-method-card {
        border-radius: 11px;
    }

    .withdraw-method-summary {
        grid-template-columns:
            55px
            minmax(0, 1fr);

        min-height: 82px;

        gap: 10px;

        padding:
            11px
            11px
            8px;
    }

    .withdraw-method-logo {
        width: 55px;
        height: 55px;

        border-radius: 9px;
    }

    .withdraw-method-name {
        font-size: .73rem;
    }

    .withdraw-method-time {
        margin-bottom: 5px;

        font-size: .55rem;
    }

    .withdraw-method-limits b {
        font-size: .55rem;
    }

    .withdraw-method-type {
        position: absolute;

        top: 10px;
        right: 10px;

        padding: 0;
    }

    .withdraw-method-type span {
        min-height: 18px;

        padding: 0 6px;

        font-size: .4rem;
    }

    .withdraw-method-toggle {
        width: calc(100% - 22px);

        min-height: 38px;

        margin:
            0
            11px
            11px;

        border-radius: 8px;

        font-size: .59rem;
    }

    .withdraw-method-expand-inner {
        padding: 14px 11px 11px;
    }

    .withdraw-field {
        margin-bottom: 13px;
    }

    .withdraw-quick-amounts {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .withdraw-submit {
        min-height: 43px;
    }

    .withdraw-result {
        margin:
            0
            11px
            11px;
    }

    .withdraw-info-box {
        margin-top: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .withdraw-page-kicker {
        font-size: .52rem;
    }

    .withdraw-page-heading h1 {
        font-size: 1.3rem;
    }

    .withdraw-filter span {
        white-space: nowrap;
    }

    .withdraw-result-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.withdraw-filter:focus-visible,
.withdraw-method-toggle:focus-visible,
.withdraw-submit:focus-visible,
.withdraw-quick-amounts button:focus-visible {
    outline:
        2px solid
        rgba(var(--primary-rgb), .8);

    outline-offset: 2px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .withdraw-method-card,
    .withdraw-filter,
    .withdraw-method-toggle,
    .withdraw-method-toggle i,
    .withdraw-submit,
    .withdraw-quick-amounts button,
    .withdraw-select-wrap,
    .withdraw-iban-input,
    .withdraw-amount-input {
        transition: none !important;
    }

}


/* =========================================================
   SAVED ACCOUNTS
========================================================= */

.withdraw-saved-accounts {
    margin-bottom: 14px;
}

.withdraw-saved-accounts[hidden] {
    display: none !important;
}

.withdraw-saved-accounts > label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-muted);
    font-size: .59rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .055em;
}

.withdraw-saved-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.withdraw-saved-account {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--glass-bg-subtle);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
    font-family: inherit;
    text-align: left;
    width: 100%;
    color: inherit;
}

.withdraw-saved-account:hover {
    border-color: rgba(var(--primary-rgb), .22);
    background: rgba(var(--primary-rgb), .045);
}

.withdraw-saved-account.is-selected {
    border-color: rgba(var(--primary-rgb), .45);
    background: rgba(var(--primary-rgb), .08);
    box-shadow: 0 0 0 1px rgba(var(--primary-rgb), .15);
}

.withdraw-saved-badge {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 0 6px;
    border: 1px solid rgba(var(--success-rgb), .2);
    border-radius: 999px;
    color: var(--success);
    background: rgba(var(--success-rgb), .06);
    font-size: .42rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

.withdraw-saved-holder {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .62rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.withdraw-saved-iban {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: .52rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: .02em;
}

.withdraw-saved-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: var(--text-dim);
    font-size: .48rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.withdraw-saved-divider::before,
.withdraw-saved-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--glass-bg-subtle);
}

.withdraw-iban-input input.is-from-saved {
    background: rgba(var(--primary-rgb), .04);
    border-color: rgba(var(--primary-rgb), .2);
}