.table-wrap {
    overflow-x: auto;
    overflow-y: visible;
    border: 1px solid rgba(199, 214, 230, 0.8);
    border-radius: 14px;
    background: var(--panel-strong);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 620px;
}

th,
td {
    text-align: left;
    padding: 10px 10px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

th {
    color: var(--muted);
    font-weight: 600;
    position: sticky;
    top: 0;
    background: #f6faff;
    z-index: 1;
}

@media (max-width: 860px) {
    .table-wrap {
        overflow-x: auto;
    }
}
