body {
    margin: 0;
    padding: 0;
    font-family: Reith Sans, Arial, Helvetica, sans-serif;
    color: white;
    background-color: #313343;
}

#header {
    height: 50px;
    font-size: 22px;
    background-color: #313343;
    border-bottom: 2px solid #353b54;
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-logo {
    height: 20px;
    padding-left: 15px;
}

#container {
    width: 100%;
    display: flex;
}

#output-labels {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
    align-items: start;
    justify-items: center;
}

#output {
    background-color: #4c596c;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
}

.output-canvas {
    width: 100%;
}
.output-canvas-label {
    color: white;
    background-color: rgba(0,0,0,0.6);
    padding: 3px 6px;
    border-radius: 8px;
    margin: 5px 0;
    font-size: 14px;
}

#studio-config {
    min-width: 300px;
    width: 20%;
    padding: 15px;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #38475c;
}
#studio-config-title {
    font-size: 30px;
    font-weight: bold;
}
#studio-config-screens {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.studio-config-screen {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.studio-config-canvas {
    cursor: pointer;
    width: 100%;
    background-color: grey;
}
#studio-config-color-settings {
    display: flex;
    gap: 10px;
}
#studio-config-color-settings > input {
    width: 40%;
}
#update {
    width: min-content;
}

#gfx-config {
    background-color: green;
}

@font-face {
    font-family: "Reith Sans";
    font-weight: normal;
    src: url("fonts/BBCReithSans_W_Rg.woff2") format("woff2"),
    url("fonts/BBCReithSans_W_Rg.woff") format("woff");
}
@font-face {
    font-family: "Reith Sans";
    font-weight: 500;
    src: url("fonts/BBCReithSans_W_Md.woff2") format("woff2"),
    url("fonts/BBCReithSans_W_Md.woff") format("woff");
}
@font-face {
    font-family: "Reith Sans";
    font-weight: bold;
    src: url("fonts/BBCReithSans_W_Bd.woff2") format("woff2"),
    url("fonts/BBCReithSans_W_Bd.woff") format("woff");
}
@font-face {
    font-family: "Reith Serif";
    font-weight: normal;
    src: url("fonts/BBCReithSerif_W_Rg.woff2") format("woff2"),
    url("fonts/BBCReithSerif_W_Rg.woff") format("woff");
}
@font-face {
    font-family: "Reith Serif";
    font-weight: 500;
    src: url("fonts/BBCReithSerif_W_Md.woff2") format("woff2"),
    url("fonts/BBCReithSerif_W_Md.woff") format("woff");
}
@font-face {
    font-family: "Reith Serif";
    font-weight: bold;
    src: url("fonts/BBCReithSerif_W_Bd.woff2") format("woff2"),
    url("fonts/BBCReithSerif_W_Bd.woff") format("woff");
}