.deposit-records-page .deposit-method {
    padding: 8px 0 130px;
    position: relative;
    z-index: 2;
}

.deposit-records-filters {
    margin-bottom: 18px;
}

.deposit-records-filters__inner {
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 60px rgba(31, 36, 64, 0.08);
    backdrop-filter: blur(16px);
}

.deposit-records-filters__label {
    display: block;
    margin-bottom: 5px;
    color: #30324a;
    font-size: 0.8125rem;
    font-weight: 800;
}

.deposit-records-filters__control {
    min-height: 38px;
    border-radius: 10px;
    border-color: rgba(31, 36, 64, 0.16);
    color: #282b3d;
    font-weight: 600;
}

.deposit-records-filters__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.deposit-records-filters__actions .btn {
    min-height: 44px;
    border-radius: 12px;
    font-weight: 800;
}

.deposit-records-table-wrap,
.deposit-records-table-responsive {
    border-radius: 20px;
    overflow: hidden;
}

.deposit-records-meta {
    margin-bottom: 10px;
    color: #30324a;
    font-weight: 700;
}

.deposit-records-pagination {
    margin-top: 16px;
}

.withdrawal-records__hero {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.withdrawal-records__back {
    flex: 0 0 auto;
}

.withdrawal-records__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: #178a4d;
    font-size: 0.8125rem;
    font-weight: 900;
}

.withdrawal-records__eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2cc76f;
}

.withdrawal-records__title {
    margin: 0;
    color: #11121a;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
}

.withdrawal-records-page .withdraw-board {
    padding-bottom: 0;
}

.withdrawal-records-board__shell {
    background: rgba(255, 255, 255, 0.78);
}

.withdrawal-records-board__labels {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.withdrawal-records-list {
    display: grid;
    gap: 14px;
}

.withdrawal-record-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    min-height: 58px;
    margin-bottom: 0;
    padding: 10px 16px;
}

.withdrawal-record-row__main {
    min-width: 0;
}

.withdrawal-record-row__ref {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.withdrawal-record-row__date,
.withdrawal-record-row__network {
    display: block;
    margin-top: 3px;
    color: rgba(49, 52, 73, 0.58);
    font-size: 0.75rem;
    font-weight: 800;
}

.withdrawal-record-row__status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(31, 36, 64, 0.08);
    color: #313449;
    font-size: 0.75rem;
    font-weight: 900;
}

.withdrawal-record-row__status.is-approved {
    background: #188753;
    color: #fff;
}

.withdrawal-record-row__status.is-rejected {
    background: #dc3545;
    color: #fff;
}

.withdrawal-record-row__status.is-pending {
    background: #30324a;
    color: #fff;
}

.withdrawal-record-row__meta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(31, 36, 64, 0.08);
}

.withdrawal-record-row__meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.withdrawal-record-row__meta span {
    color: rgba(49, 52, 73, 0.62);
    font-size: 0.75rem;
    font-weight: 900;
}

.withdrawal-record-row__meta code {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ff2d7a;
    background: transparent;
    font-size: 0.8125rem;
}

.withdrawal-record-row__copy {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 4px 13px;
    background: linear-gradient(90deg, #f7b14a, #f2a23b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
}

.withdrawal-records-empty {
    padding: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: #30324a;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 991px) {
    .responsive--lg.withdrawal-records-board__labels {
        display: none;
    }

    .responsive--lg.withdrawal-records-list {
        gap: 12px;
    }

    .withdrawal-record-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    .withdrawal-record-row .withdraw-row__cell {
        justify-content: flex-start;
        text-align: left;
    }

    .withdrawal-record-row .withdraw-row__cell--amount {
        justify-content: flex-start;
    }

    .withdrawal-record-row__meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .deposit-records-page .deposit-method {
        padding-bottom: 112px;
    }

    .deposit-records-filters__inner {
        padding: 12px;
        border-radius: 20px;
    }

    .deposit-records-filters__actions .btn {
        width: 100%;
    }

    .withdrawal-records__hero {
        align-items: flex-start;
    }

    .withdrawal-records__title {
        font-size: 2rem;
    }

    .withdrawal-records-board__shell {
        padding: 10px;
    }
}
