/* ============================================
   iban.css — IBAN modul
   ============================================ */

/* CSS Reset for this module */
.iban-wrap * {
    all: revert;
    box-sizing: border-box;
}

.iban-wrap {
    width: 1200px;
    box-sizing: border-box;
}

/* IBAN hero */
.iban-wrap #iban-hero {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 20px;
    box-sizing: border-box;
}

/* IBAN upload button */
.iban-wrap #iban-upload-btn {
    background: linear-gradient(135deg, var(--accent), #6d28d9) !important;
}

/* IBAN overlay */
.iban-wrap #iban-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.iban-wrap #iban-overlay.success {
    background: rgba(34, 197, 94, .25);
}

/* IBAN person context back */
.iban-wrap #iban-person-context {
    margin-bottom: 16px;
}

/* IBAN file list */
.iban-wrap .iban-file-list {
    margin-top: 20px;
}

.iban-wrap .iban-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    box-sizing: border-box;
}

.iban-wrap .iban-file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    flex-shrink: 0;
}

.iban-wrap .iban-file-info {
    flex: 1;
    min-width: 0;
}

.iban-wrap .iban-file-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.iban-wrap .iban-file-status {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px;
}

/* IBAN status badge */
.iban-wrap .iban-status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.iban-wrap .iban-status-badge.pending {
    background: rgba(251, 191, 36, .12);
    color: #d97706;
}

.iban-wrap .iban-status-badge.verified {
    background: rgba(34, 197, 94, .12);
    color: var(--green);
}

.iban-wrap .iban-status-badge.error {
    background: rgba(239, 68, 68, .12);
    color: var(--red);
}

/* IBAN preview */
.iban-wrap .iban-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 16px;
    box-sizing: border-box;
}

.iban-wrap .iban-preview-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.iban-wrap .iban-preview-value {
    font-size: 14px;
    font-family: var(--font-mono);
    color: var(--text);
    word-break: break-all;
}

/* IBAN actions */
.iban-wrap .iban-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

/* IBAN verify button */
.iban-wrap .iban-verify-btn {
    background: linear-gradient(135deg, var(--accent2), #059669) !important;
}