﻿.page {
    height: 100vh;

    /* Figured out this ensures proper scrolling within the fixed view */
    display: flex;
    flex-direction: column;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    width: 100%;
    padding: 0 24px;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.page-content {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.page-navigation {
    position: fixed;
}

.page-content-header {
    flex: 0 1 auto;
}

.page-content-body {
    flex: 1 1 auto;
}

.content-centred {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.two-column-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
}

.ps-select-item {
    font-weight: 900;
}

.bullet-list {
    list-style: disc;
}

.loading-table-cell {
    padding-bottom: 18px !important;
}

.maintain-tabs {
    border-bottom: 1px solid var(--mud-palette-divider);
}

.maintain-panel-container {
    flex-grow: 1;
}

.maintain-panel-scrollable {
    flex-grow: 1;
    overflow: auto;
    /* for Firefox */
    min-height: 0;
}

.sticky-top {
    position: sticky;
    top: 0;
    background: white;
    z-index: 2;
}

/* so can position sticky buttons etc over the top of table for commitees and locations */
.non-static-table-header {
    z-index: 1;
    position: relative;
}