.dash-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

/* New scroll wrapper */
.table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
}

/* Optional: makes horizontal scrollbar easier to see */
.table-scroll::-webkit-scrollbar {
    height: 10px;
}

.table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 999px;
}

.dash-table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}

.dash-table th,
.dash-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-table th {
    background: #f7f7f7;
    font-weight: 700;
    color: #333;
}

.dash-table tr:hover td {
    background: #fafafa;
}

/* Column sizing */
.col-order {
    width: 70px;
}

.col-image {
    width: 90px;
}

.col-name {
    width: 360px;
}

.col-slug {
    width: 260px;
}

.col-status {
    width: 110px;
}

.col-small {
    width: 90px;
}

.col-actions {
    width: 180px;
}

/* Allow the name cell to have a second description line */
.name-cell {
    white-space: normal;
}

.name-cell strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.muted {
    color: #777;
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-actions {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
}

