.App {
    /* background-color: aliceblue; */
    height: 100vh;
}

.App .body {
    display: flex;
    flex-direction: row;
    /* background-color: lightpink; */
}

.App .content {
    flex: 1 1 auto;
    /* background-color: lightgreen; */
    display: flex;
    flex-direction: row;
}


.body .sidebar {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 12em;
    /* background-color: green; */
}

.App:after,
.App .body:after,
.App .body .content:after,
.App .body .sidebar:after 
{
     content: ''; 
} 
:root {
    --header-height: 25px;
}

.container-title {
    height: var(--header-height);
    text-align: center;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    /* background-color: beige; */
    overflow: auto;
    height: calc(100vh - var(--header-height));
    align-content: flex-start;
}

.loading-container {
    height: 100vh;
    align-items: center;
}

.details-container{
    /* flex: 1 1 auto; */
    display: flex;
    flex-direction: column;
    /* background-color: blueviolet; */
    height: 100vh;
    width: 100%;
}

.ms-Dialog-main {
	max-width: 70%;
	max-height: 70%;

	width: 70%;
	height: 70%;
}

/*# sourceMappingURL=/gui.be61dc9a.css.map */