/* Prevent large dialogs from overflowing the screen by making the container scrollable */

.different-store-highlight {
    background-color: rgba(33, 150, 243, .2);
}

.mud-dialog {
    overflow-y: visible;
}

.mud-main-content {
    height: 100vh;
}

.mud-table-sticky-header {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mud-table-sticky-header  .mud-table-container {
    min-height: 0;
    max-height: 100%;
}

.table-sticky-header .mud-table-head {
    position: sticky!important;
    top: -1px!important;
    z-index: 2!important;
    height: 100%!important;
    background-color: var(--mud-palette-surface);
}

.table-full-page-container {
    display: flex;
    flex-direction: column;
}