@font-face {
    font-family: 'Montserrat';
    src: url('./montserrat.ttf') format('woff2-variations');
}

html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	flex-direction: row;
    cursor: default;
    user-select: none;
}

.list {
	width: 150px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	flex: none;
	background: #515151;
	color: #fff;
    overflow-y: auto;
}

.list > .filler {
    flex-grow: 2;
    box-shadow: -20px 0px 10px -15px rgba(0, 0, 0, 0.25) inset;
}

.list > .item {
    display: flex;
    flex-direction: column;
    padding: 6px 12px;
    transition: background-color .2s;
    box-shadow: -20px 0px 10px -15px rgba(0, 0, 0, 0.25) inset;
}

.list > .item:hover {
    background: #818181;
}

.list > .item.selected {
    background: #fff;
    color: #000;
    box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.5);
}

.list > .item > .title {
    font-size: 14px;
}

.list > .item > .subtitle {
    font-size: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.list > .item > .subtitle > .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: none;
    margin-right: 4px;
}

.list > .item > .subtitle > .dot.red {
    background: red;
}

.list > .item > .subtitle > .dot.green {
    background: mediumseagreen;
}

.workspace {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	flex-grow: 2;
}

.header {
	display: flex;
	flex-direction: row;
	padding: 1% 2%;
	width: 100%;
	box-sizing: border-box;
}

.header > h1 {
    flex-grow: 2;
}

.header > .info {
    color: #515151;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

h1 {
	margin: 0;
	padding: 0;
	font-size: 24px;
}

.cc {
	width: 100%;
	overflow: hidden;
	flex-grow: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}