
/* BANKS PAGE */

/* ===== PAGE HEADER ===== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.page-actions {
    display: flex;
    gap: 14px;
}

/* ===== TABLE ===== */
.table-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1.4fr 1fr;
    padding: 18px 22px;
    align-items: center;
}

.table-head {
    font-size: 13px;
    color: var(--text-light);
    background: rgba(255,255,255,0.02);
}

.table-row {
    border-top: 1px solid var(--border);
}

.bank-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bank-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(95,191,138,0.15);
    color: #5FBF8A;
    display: grid;
    place-items: center;
}

.code-pill {
    padding: 6px 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    width: fit-content;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #34c38f;
    border: none;
    color: #000;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 10px;
}

/* ===== MODAL ===== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    place-items: center;
    z-index: 999;
}

.modal-backdrop.show {
    display: grid;
}

.modal {
    width: 420px;
    background: var(--bg-card);
    border-radius: 18px;
    padding: 24px;
}

.modal-header {
    position: relative;
}

.modal-header .close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.modal-body {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-body input {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--search-bg);
    color: var(--text);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

