﻿/* insightstables.css */
/* Styles for the Insights DataGrid container and pager layout */

.insights-table-container {
    overflow-x: auto;
    width: 100%;
}

.insights-table-pager {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem; /* same as pa-2 */
    gap: 12px;
}

@media (min-width: 768px) {
    .insights-table-pager {
        flex-direction: row;
        align-items: center;
    }
}

.mud-width-full {
    width: 100%;
}
