body {
    background-color: rgb(240, 240, 240);

    font-family: 'Gilda Display';
    font-size: 12px;
}

#app {
    display: flex;
}

#logo {
    width: 184px;
    height: 40px;
    fill: rgb(0, 0, 0);
    margin: 0 20px;
}

#progress-message {
    width: 200px;
}

#progress-bar-container {
    flex: 9999;
    margin: 5px;
}

#progress-bar, #layers-progress-bar {
    width: 0;
    height: 10px;
    background-color: rgb(0, 0, 0);
}

#frame-input {
    margin: 5px;
    padding: 5px;
    width: 60px;
}

#mixed-down-canvas {
    width: 800px;
    height: 800px;
    position: absolute;
    top: 8px;
}

#canvas-container {
    background-color: rgb(255, 255, 255);

    width: 800px;
    height: 800px;
}

#descriptions-container {
    font-style: italic;
    flex: 1;
    white-space: pre;
    overflow-y: auto;
}

#override-container {
    white-space: pre;
    flex: 1;
    overflow-y: auto;
}

#override-container details, #override-container div {
    margin: 3px 3px 3px 10px !important;
}

#override-container details div, #override-container summary {
    display: flex;
    align-items: center;
    height: 18px;
}

#override-container summary {
    cursor: pointer;
}

#override-container button {
    border: 1px solid rgb(100, 100, 100);
    margin: 0 5px;
    font-size: 10px;
}

#override-container span {
    margin: 0 5px !important;
    pointer-events: none;
}

#descriptions-container span {
    display: block;
    margin-bottom: 30px !important;
}

#footer {
    display: flex;
    height: 40px;
}

#footer div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sidebar {
    display: flex;
    flex-direction: column;
    height: 820px;
    width: 500px;
}

#sidebar div {
    margin: 20px;
}

#effect-toggles-container div {
    flex: 1;
    margin: 0px;
    display: flex;
    align-items: center;
}

#sidebar span {
    margin: 5px;
}

#more-effects-soon-message {
    margin: 10px !important;
}

a div {
    width: 40px;
    display: flex;
    justify-content: center;
    margin: 0 !important;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    margin: 10px 0;

    display: flex;
    align-items: center;
}

canvas {
    position: absolute;
}

label {
    cursor: pointer;
    display: block;
}

input[type="checkbox"] {
    cursor: pointer;
}

input:disabled {
    color: rgb(170, 170, 170);
}

input:disabled + label {
    color: rgb(170, 170, 170);
}

button {
    background: rgb(255, 255, 255);
    border: 3px solid rgb(100, 100, 100);
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    margin: 5px;
}

button:hover {
    border-color: rgb(0, 0, 0);
}

button:disabled {
    border-color: rgb(200, 200, 200);
    background-color: rgb(170, 170, 170);
    cursor: default;
}

button svg {
    width: 30px;
    height: 20px;
    fill: rgb(100, 100, 100);
}

button:hover svg {
    fill: rgb(0, 0, 0);
}

button:disabled svg {
    fill: rgb(200, 200, 200);
}

img {
    height: 20px;
    margin-left: 5px;
}