﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.monaco-editor-container {
    flex: 1;
    display: flex;
}

.monaco-editor {
    flex: 1;
}

.mat-tab-group-content{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-1{
    flex: 1;
}

.p-1 {
    padding: 0.5rem !important;
}

.p-2{
    padding: 1rem !important;
}

.justify-center{
    justify-content: center;
}

.border-0{
    border: 0;
}