body {
    font-family: "Fragment Mono", monospace;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

a:link,
a:visited {
    color: #66f;
}

h1 {
    text-align: center;
}

.drum-row.target-highlight select,
.drum-row.target-highlight button,
.drum-row.target-highlight .step {
    box-shadow: 0 0 0 0.5px #66f;
}

.env-canvas {
    background-color: white;
    border: 1px solid #555;
    cursor: pointer;
    flex: 1;
    height: 80px;
    touch-action: none;
    min-width: 0;
    box-sizing: border-box;
}

.compact-row.envelope-controls {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.synth-color-indicator {
    margin-top: 6px;
    width: 6px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 0px;
    background-color: #e0e0e0; /* Default color for 'Global' */
    cursor: pointer;
}

.osc-mode-group {
    flex: 1;
}

/* Rule to hide both types of indicators */
.hide-color-indicators .synth-color-indicator,
.hide-color-indicators .synth-tab-indicator {
    display: none;
}

/* Rule to fix the synth tab padding when indicators are hidden */
.hide-color-indicators .page-tab {
    padding-left: 0.3rem;
}

.env-lock-btn {
    /* Forcefully remove all button-like appearance */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0px 0px !important; /* Narrows the button's padding */

    /* General properties */
    flex-shrink: 0;
    cursor: pointer;
    font-size: 1rem;

    /* Style for inactive (unlocked) state: grey icon */
    filter: grayscale(1) brightness(0);

    opacity: 0.2;
}

.env-lock-btn:hover {
    /* On hover, make the icon fully opaque. */
    opacity: 0.5;
    color: #666fff;
    /* Ensure the background stays transparent even on hover */
    background: transparent !important;
}

.env-lock-btn.active {
    /* Style for active (locked) state: blue icon */
    opacity: 1;
    color: #666fff;

    filter: none; /* Remove the filter that forces it to be black */
}

.env-lock-btn.active:hover {
    /* Style for active (locked) state: blue icon */
    opacity: 1;
    color: #44d;
    filter: none; /* Remove the filter that forces it to be black */
}

.envelope-tooltip {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: "Fragment Mono", monospace;
    font-size: 0.6rem;
    z-index: 1001;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.line {
    border-bottom: 1px solid #eee;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.tempo-group {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.tempo-group label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    padding: 0.5rem 0;
}

#bpmVal {
    display: inline-block;
    width: 30px;
    text-align: right;
}

.scenes-group {
    border: 0px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 0px;
    display: flex;
    gap: 8px;
}
.scenes-grid {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 4px;
    width: 75%;
}
.scene-btn {
    padding: 1px 1px;
    border: 1px solid black;
    background-color: #f0f0f0;
    cursor: pointer;
    border-radius: 3px;
    font-family: "Fragment Mono", monospace;
    transition: all 0.1s ease-in-out;
}
.scene-btn.saved {
    background-color: #ffffff;
    border-color: #bbb;
}
.scene-btn.active {
    background-color: #666fff;
    color: white;
    border-color: #666fff;
}

#saveSceneBtn {
    /* Add these properties */
    width: 90px; /* Sets a fixed width. Adjust this value if needed. */
    box-sizing: border-box; /* Ensures padding and border are included in the width */
}

#saveSceneBtn.save-active {
    background-color: #666fff;
    color: white;
    border-color: black;
}

#session-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* Allows buttons to wrap on small screens */
}

#session-controls button {
    margin: 0;
    /* Remove any default margins */
}

.session-status-text {
    font-size: 0.65rem;
}

#session-menu {
    display: flex;
    flex-direction: row; /* This makes the buttons align horizontally */
    gap: 0.5rem;
    padding: 0rem;
    margin-top: 0.5rem;
}

#session-menu input[type="text"] {
    font-family: "Fragment Mono", monospace;
    border: 1px solid #ccc;
    font-size: 0.65rem;
    padding: 4px;
}

#session-info-text {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #66f;
}

#leave-session-btn {
    margin-left: auto;
    background-color: #f5f5f5;
}

#leave-session-btn:hover {
    background-color: #e0e0e0;
}

#autoplay-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    display: none;
    /* Initially hidden */
}

#autoplay-message {
    color: white;
    font-size: 1.5em;
    font-family: "Fragment Mono", monospace;
}

#main-layout {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

#main-layout > #drumContainer {
    flex: 1;
    /* Makes the drum container fill the remaining space */
}

.controls.control-group {
    flex: 0 0 270px; /* 270 */
    display: flex;
    flex-direction: column;
    /* Stacks the items inside vertically */
    align-items: stretch;
    /* Makes child elements fill the width */
    gap: 0.35rem;
    margin-top: 0.38rem;
    /* ?? Align with drumrow */
}

.controls .button-group {
    display: flex;
    flex-direction: row;
    /* Makes buttons go side-by-side */
    flex-wrap: wrap;
    /* Allows buttons to go to the next line if space runs out */
    gap: 5px;
    /* Adds a small space between each button */
    margin-bottom: 0;
}

#playPauseBtn {
    background-color: #66f;
    color: white;
    border-color: black;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

#playPauseBtn:hover {
    background-color: #44d;
}

#drumContainer {
    margin: 0 auto;
    width: fit-content;
    margin-bottom: 0rem;
    flex: 1;
    /* Allow the drum container to take up available space */
}

.drum-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0px 0;
    position: relative;
}

/* Style for drum rows targeting a muted/soloed synth */
.drum-row.muted {
    opacity: 0.4;
}

.label {
    width: auto;
    margin-right: 0px;
    margin-top: 0.5em;
    font-size: 0.75rem;
    flex: 0 0 auto;
    text-align: left;
}

.step-area {
    display: flex;
    position: relative;
    height: 20px;
    min-width: 0;
    -webkit-user-select: none;
}

.step {
    width: 24px;
    height: 24px;
    margin: 2px;
    border: 1px solid #ccc;
    line-height: 24px;
    text-align: center;
    background: #eee;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
}

.step:nth-child(4n-2) {
    background: #e0e0e0;
}

.step-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #444;
}

.step.active .step-fill {
    background: #66f;
}

.step.active {
    border: 1px solid #66f !important;
}


.step-expanded {
  transform: scaleY(2.5);
  transform-origin: center center;
  transition: transform 0.02s ease;
  z-index: 10;
  position: relative;
}

.synth-target,
.param-select {
    width: 80px;
    font-family: "Fragment Mono", monospace;
    font-size: 0.65rem;
    border: 1px solid #ccc;
    background: #fff;
    padding: 4px;
    cursor: pointer;
    margin-top: 0;
    display: inline-block;
    color: black;
}

.step-divider,
.octave-select,
.direction-select,
.transpose-select,
.scale-select {
    width: auto;
    min-width: 45px;
    font-family: "Fragment Mono", monospace;
    font-size: 0.65rem;
    border: 1px solid #ccc;
    background: #fff;
    padding: 4px;
    cursor: pointer;
    margin-top: 0;
    display: inline-block;
    color: black;
}

.selects-container {
    display: flex;
    gap: 5px;
    align-items: center;
}

.drag-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 24px;
    background: #f1f1f1;
    border-radius: 0px;
    cursor: ew-resize;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    place-content: center;
    padding: 0;
    margin: 2px;
    box-sizing: border-box;
    touch-action: none;
    /* Prevent touch scrolling during drag */
    user-select: none;
    /* Prevent text selection during drag */
}

.drag-dot {
    width: 3px;
    height: 3px;
    background: grey;
    border-radius: 50%;
    margin: 0;
    align-self: center;
    justify-self: center;
}

button {
    font-family: "Fragment Mono", monospace;
    font-size: 0.65rem;
    padding: 0.2rem 0.3rem;
    background: white;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    color: black;
}

button:hover {
    background: #e5e5e5;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#recordBtn.recording {
    background-color: #66f;
    color: white;
    border-color: black;
}

#recordBtn.recording:hover {
    background-color: #44d;
}

.record-arm-btn.recording {
    background-color: #66f;
    color: white;
    border-color: black;
}

.record-arm-btn.recording:hover {
    background-color: #44d;
    color: white;
    border-color: black;
}

.page-tab {
    flex: 1;
    font-size: 0.65rem;
    text-align: center;
    padding: 0.3rem;
    background: white;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add padding on the left to make room for the color bar */
    padding-left: 14px;
}

.synth-tab-indicator {
    width: 6px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.page-tab.active {
    border: 1px solid #ccc;
    background-color: #66f;
}

.page-tab .tab-text {
    position: relative;
    /* This is necessary for z-index to work */
    z-index: 1;
    /* A higher z-index brings it to the front */
}

.page-tab.active .tab-text {
    color: white;
}

.page-tab.muted > .tab-text,
.page-tab.muted > .user-indicator-container,
.page-tab.muted > .vu-meter {
    opacity: 0.4;
}

/* When a muted tab is also the active one, keep it grey */
.page-tab.active.muted {
    color: black;
    background-color: #c2c2fb;
    /* A desaturated, muted purple/gray */
}

.page-tab.active.muted .tab-text {
    color: black;
    opacity: 1;
    /* This ensures the text is fully opaque */
}

.tab-controls {
    display: flex;
    gap: 3px;
    margin-left: 10px;
    /* Space between text and buttons */
}

.tab-mute-btn,
.tab-solo-btn {
    font-family: "Fragment Mono", monospace;
    font-size: 0.6rem;
    padding: 2px 2px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 2px;
    cursor: pointer;
    line-height: 1;
    min-width: 20px;
    /* Ensure buttons have a minimum width */
    z-index: 2;
    /* Sits on top of the VU meter */
}

.tab-mute-btn:hover,
.tab-solo-btn:hover {
    background-color: #f0f0f0;
}

/* Style for active (on) state */
.tab-mute-btn.active {
    background-color: black;
    color: white;
}

.tab-solo-btn.active {
    background-color: #66f;
    color: white;
}

.page-tab .vu-meter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Starts at 0, height is set by JS */
    background-color: black;
    opacity: 0.15;
    /* Lower opacity as requested */
    /*  transition: height 0.05s ease-out;*/
    z-index: 0;
    /* Give the meter a lower z-index */
}

.user-indicator-container {
    position: absolute;
    /* Take the container out of the layout flow */
    bottom: 2px;
    /* Position it 2px from the bottom */
    right: 4px;
    /* Position it 4px from the right */
    display: flex;
    gap: 3px;
}

.user-tab-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0.5px solid white;
}

.remote-interaction {
    /* Use a CSS variable for the color, which we'll set with JS */
    outline: 3px solid var(--interaction-color, #44d);
    outline-offset: 0px;
    box-shadow: 0 0 4px 0 var(--interaction-color, #44d);
    border-radius: 4px;
    /* Soften the corners of the glow */
    transition:
        outline 0.2s ease-out,
        box-shadow 0.2s ease-out;
}

/* A class to fade the effect out smoothly */
.remote-interaction-final {
    outline-color: transparent;
    box-shadow: 0 0 4px 0 transparent;
}

.hide-user-colors .user-tab-indicator {
    display: none !important;
}

/* Rule 3: Disables the colored flash on remote interactions */
.hide-user-colors .remote-interaction {
    outline-color: transparent !important;
    box-shadow: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat, repeat !important;
    background-position:
        right 0.7em top 50%,
        0 0 !important;
    background-size:
        0.65em auto,
        100% !important;
    border: none;
    border-radius: 0px;
    padding: 0em 0em 0em 0.35em;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    background: #ccc;
    /* Default visible track */
    height: 2px;
    margin-top: 2px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -4px;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 50%;
    background: #eee;
    border: 1px solid #777;
}

input[type="range"]::-moz-range-thumb {
    height: 0.6rem;
    width: 0.6rem;
    border-radius: 50%;
    background: #eee;
    border: 1px solid #777;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
    box-shadow: none;
    height: 0.2rem;
}

input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
    box-shadow: none;
    height: 0.2rem;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]:focus::-webkit-slider-thumb {
    background: #ccc;
}

input[type="range"]:focus::-moz-range-thumb {
    background: #ccc;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #ccc;
    border-radius: 3px;
    z-index: 1;
    /* Layer 1: The grey track */
    pointer-events: none;
}

/* Target ONLY the sliders inside a .synth-page to apply the special layering effect. */
.synth-page .control-group input[type="range"] {
    position: relative;
    background: transparent;
    /* Make the native track invisible... */
    z-index: 3;
    /* Layer 3: The thumb and invisible track area */
}

/* This makes the browser's default track for the synth sliders completely invisible */
.control-group input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
    box-shadow: none;
}

.control-group input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
    box-shadow: none;
}

.slider-value {
    font-family: "Fragment Mono", monospace;
    font-size: 0.6rem;
    color: #999;
    min-width: 35px;
    text-align: left;
}

.sm-desc {
    font-family: "Fragment Mono", monospace;
    font-size: 0.6rem;
    color: #999;
    min-width: 35px;
    text-align: left;
}

.synth-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 0.5rem auto;
}

.synth-page {
    display: none;
}

.synth-page.active {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr; /* Synthesis / Envelope Section a bit wider than the other 2 */
    gap: 0.4rem;
}

.synth-pages-container {
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    text-align: left;
    font-size: 0.7rem;
}

.synth-pages {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

#help {
    font-size: 0.7rem;
    text-align: left;
    padding: 0.4rem;
}

.control-group {
    margin: 0;
    padding: 0.5rem;
    border: 1px solid #ddd;
    background: white;
    flex: 1;
}

.control-group h4 {
    margin: 0 0 0.5rem 0;
    text-align: left;
    font-size: 0.65rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3rem;
}

.compact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    padding: 0px;
}

.compact-row label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 80px;
    font-size: 0.65rem;
}

.compact-row select,
.synth-preset {
    font-family: "Fragment Mono", monospace;
    font-size: 0.6rem;
    border: 1px solid #ccc;
    background: #fff;
    padding: 3px;
    width: 100%;
    cursor: pointer;
    margin-top: 2px;
    color: black;
}

.label-text-row {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0;
    font-size: 0.65rem;
}

.row-btn {
    font-family: "Fragment Mono", monospace;
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    background: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
}

.tab-rename-input {
    font-family: "Fragment Mono", monospace;
    font-size: 0.65rem;
    /* Matches the tab font size */
    text-align: center;
    border: 1px solid #66f;
    padding: 1px;
    margin: 0;
    /* This removes default input field styling that can interfere */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.tab-rename-input:focus {
    outline: none;
    /* Removes the default browser focus ring (the blue one) */
    border: 1px solid black;
    /* Sets a solid black border only when you're editing */
    padding: 0.1rem;
}

input[type="range"] {
    position: relative;
    z-index: 2;
}

input[type="checkbox"] {
    flex-shrink: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    margin-left: 0rem;
    width: 1rem;
    height: 1rem;
    border: 1px solid black;

    /* --- Grid Centering (inline so it sits next to text) --- */
    display: inline-grid;
    place-content: center;

    /* --- Align the box with the text beside it --- */
    vertical-align: middle;
}

input[type="checkbox"]::before {
    /* The content to be centered */
    content: "";
    width: 100%;
    height: 100%;
}

input[type="checkbox"]:checked::before {
    /* The checkmark character */
    content: "\2713";
    color: black;
    font-size: 0.8rem;
}

.solo-synth,
.mute-synth,
.randomize-synth {
    background: white;
}

.solo-synth:hover,
.mute-synth:hover,
.randomize-synth:hover,
.row-btn:hover {
    background: #f0f0f0;
}

.collab-group select {
    font-family: "Fragment Mono", monospace;
    font-size: 0.6rem;
    border: 1px solid #ccc;
    background: #fff;
    padding: 4px;
    width: 75px;
    cursor: pointer;
    margin-top: 5px;
}

#collaboration-section {
    text-align: left;
    /* Ensures all text inside is left-aligned */
}

#collaboration-section .collab-group {
    display: flex;
    align-items: center;
    /* Vertically aligns the "Mode:" label and dropdown */
    gap: 0.5rem;
    /* Adds space between the label and the dropdown */
}

#main-layout > #collaboration-section {
    flex: 0 0 250px;
    /* Give it the same fixed width as the left sidebar */
}

#collaboration-section label {
    font-size: 0.65rem;
    color: black;
}

#user-list-text {
    font-size: 0.65rem;
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
    color: black;
    /* Allows the long line of users to wrap if needed */
    word-wrap: break-word;
}

.username-change-group {
    display: flex;
    gap: 5px;
    margin-top: 0.5rem;
}

#username-input {
    flex: 1;
    font-family: "Fragment Mono", monospace;
    border: 1px solid #ccc;
    font-size: 0.65rem;
    padding: 4px;
    min-width: 0;
}


@media (max-width: 768px) {
    body {
        /* Reduce padding on small screens */
        padding: 0.5rem;
    }

    #main-layout {
        /* Stack the controls and sequencer vertically */
        flex-direction: column;
        align-items: stretch;
    }

    .controls.control-group {
        /* Allow the control panel to be full-width */
        flex-basis: auto;
        width: 100%;
    }

    #drumContainer {
        /* We no longer want the whole container to scroll,
           just the individual step areas. */
        width: 100%;
    }

    /* ADD these new rules for the drum row: */
    .drum-row {
        /* Stack the controls on top of the steps */
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem; /* Add space between rows */
    }

    .drum-row .label {
        /* Allow the controls wrapper to fill the width */
        width: 100%;
    }

    .drum-row .selects-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
        gap: 5px; /* Keep the 5px gap */
        width: 100%;
    }

    .drum-row .selects-container > * {
        width: 100%;
        min-width: 0;  /* Allows items to shrink if needed */
        margin-top: 0; /* Resets any default margins */
    }



    .step-area {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        width: 95%; /* <-- This makes it fill the screen width */
        height: auto;
        -webkit-user-select: none;
        padding-bottom: 0;
        /* We no longer need overflow: hidden */
    }

    /* ADD this rule for the steps: */
    .step {
        flex-shrink: 0;
        /* 100% / 8 steps = 12.5% per step.
           We subtract 4px to account for the 2px margin on left/right. */
        width: calc(12.5% - 4px);
        height: auto; /* Unset fixed height */
        aspect-ratio: 1 / 1; /* <-- This keeps it square */
        line-height: initial; /* Unset fixed line-height */
    }


    .synth-page.active {
        /* Stack the 3 synth parameter columns vertically */
        grid-template-columns: 1fr;
    }

    .synth-pages {
        /* Allow the synth tabs to wrap to a new line */
        flex-wrap: wrap;
    }

    #help {
        /* Stack the two help columns vertically */
        flex-direction: column;
        gap: 1rem;
    }

    /* Change the help column's vertical divider to a horizontal one */
    .help-column[style*="border-left"] {
        border-left: none !important;
        border-top: 1px solid #eee;
        padding-left: 0 !important;
        padding-top: 1rem;
    }

    /* Make the master output section full-width */
    #synth-master .control-group {
        width: 100%;
    }
}
