.deposit-filter {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
    flex-wrap: wrap;
}

/* The 8-column table (nowrap cells) is wider than a phone card; scroll it inside
   this container instead of letting it clip against body { overflow-x: hidden }. */
.deposit-table-scroll {
    overflow-x: auto;
}

.deposit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.deposit-table th,
.deposit-table td {
    text-align: left;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid var(--color-gray-5, #e5e5e5);
    white-space: nowrap;
}

.deposit-table th {
    font-weight: 600;
    color: var(--color-gray-2, #404040);
}

.deposit-table td:nth-child(5),
.deposit-table th:nth-child(5),
.deposit-table td:nth-child(6),
.deposit-table th:nth-child(6) {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.deposit-status {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    color: #fff;
    background: var(--color-gray-3, #555);
}

.deposit-status--held {
    background: var(--color-accent, #e76f51);
}

.deposit-status--partially_settled {
    background: var(--color-secondary, #9d4edd);
}

.deposit-status--settled {
    background: var(--color-success, #2a9d8f);
}

.deposit-empty {
    color: var(--color-gray-4, #888);
    font-style: italic;
}
