body {
    font-family: sans-serif;
    background-color: #222;
    color: #eee;
}

.midi-setup {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
}

.controller {
    display: flex;
    justify-content: space-around;
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: auto;
}

.deck, .mixer {
    background-color: #555;
    padding: 15px;
    border-radius: 8px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mixer {
    flex-direction: row; /* Mixer channels side-by-side */
    align-items: flex-start;
}

.channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

.crossfader-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align fader towards bottom */
    margin: 0 20px;
    min-height: 200px; /* Give space */
}

h2 {
    margin-top: 0;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 2px;
    font-size: 0.8em;
    text-align: center;
}

.transport button {
    margin: 5px;
    padding: 10px 15px;
}

.jog-wheel-placeholder {
    margin: 20px 0;
    text-align: center;
}
.control-jog {
    width: 100px; /* Basic sizing */
}

.control-fader {
    writing-mode: bt-lr; /* IE/Edge */
    -webkit-appearance: slider-vertical; /* WebKit */
    appearance: slider-vertical;
    width: 8px;
    height: 150px;
    padding: 0 5px;
    cursor: pointer;
}
.crossfader {
     writing-mode: lr-tb; /* Horizontal */
    -webkit-appearance: slider-horizontal;
     appearance: slider-horizontal;
     width: 150px;
     height: 8px;
}

.control-knob {
    /* Basic knob styling - real knobs often need JS libraries or complex CSS */
    -webkit-appearance: slider-vertical; /* Crude vertical slider as knob placeholder */
    appearance: slider-vertical;
     height: 50px;
     width: 20px; /* Make it look vaguely knob-like */
     margin-bottom: 15px;
     cursor: pointer;

}

/* Add more specific styling as needed */
#play-1, #play-2 { background-color: #4CAF50; color: white; }
#cue-1, #cue-2 { background-color: #ff9800; color: white; }
/* etc. */