        .CodeMirror {
            background-color: #252525 !important;
            height: 100%;
            width: 100%;
            font-size: 14px;
        }
        .CodeMirror-gutters {
            background-color: #252525 !important;
        }
        body {
            margin: 10;
            padding: 0;
            box-sizing: border-box;
            background-color: #222;
            color: white;
        }
        .header {
            width: 100%;
            height: 100px;
        }
        h1 {
            color: rgb(187, 204, 238);
        }
        h1 span {
            font-size: 0.5em;
            font-weight: normal;
            color: #aaa;
        }
        .author-link {
            color: inherit;
            text-decoration: none;
            font: inherit;
        }
        .grid-container {
            display: grid;
            grid-template-rows: 5% 80% 15%;
            grid-template-columns: 1fr 1fr;
            height: calc(100vh - 100px);
            width: 100vw;
            gap: 5px;
        }
        .grid-item {
            border: 0px;
            display: flex;
            align-items: center;
            justify-content: left;
            font-size: 1.2em;
            background-color: #222;
            position: relative;
            padding: 10;
            margin: 10;
            overflow: hidden;
        }
        .square {
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #222;
            border: solid;
        }
        #canvas-container {
            width: 100%;
            height: 100%;
            background: black;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        canvas {
            width: 100%;
            height: 100%;
        }
        #shaderLog {
            background-color: #222;
            color: white;
            resize: none;
            width: 100%;
            height: 100%;
            border: 0px;
        }
        .grid-item.item1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .grid-item.item2 {
            justify-content: flex-end;
        }
        .grid-item.item3 {
            position: relative;
            padding: 0;
            margin: 0;
            overflow: hidden;
        }
        .grid-item.item6 {
            align-items: flex-start;
        }
        .slider {
            align-items: center;
            justify-content: center;
        }

        #shaderArea {
            display: none;
        }
        select {
            background-color: #333;
            color: #ffffff;
            border: 0px;
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 1rem;
            transition: background-color 0.2s, border-color 0.2s;
        }
        select:hover {
            background-color: #3a3a3a;
            border-color: #666;
        }
        select:focus {
            outline: none;
            border-color: #222;
        }
        button {
            background-color: #2a2a2a;
            color: #ffffff;
            border: 0px;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s, border-color 0.2s;
        }

        button:hover {
            background-color: #3a3a3a;
            border-color: #666;
        }

        button:active {
            background-color: #444;
            border-color: #888;
        }

        button:focus {
            outline: none;
        }
        .slider {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .slider label {
            white-space: nowrap;
        }

        .slider input[type="range"] {
            flex: 1;
        }