body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
}

header {
    padding: 10px;
    background: #222;
    text-align: center;
}

button {
    margin: 5px;
    padding: 10px;
    background: #444;
    border: none;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #666;
}

#modeInfo {
    margin-top: 5px;
    font-size: 14px;
    color: #aaa;
}

#workspace {
    display: flex;
    height: 80vh;
}

#sidebar {
    width: 200px;
    background: #1a1a1a;
    padding: 10px;
    overflow-y: auto;
}

.sample {
    background: #333;
    margin: 5px 0;
    padding: 5px;
    cursor: grab;
}

#timeline {
    flex: 1;
    background: #000;
    position: relative;
}

.track {
    border-bottom: 1px solid #333;
    height: 80px;
    position: relative;
}

.clip {
    position: absolute;
    top: 10px;
    height: 60px;
    background: #00c3ff;
    padding: 5px;
    cursor: move;
}

.volume {
    position: absolute;
    right: 5px;
    top: 5px;
}

#dropZone {
    border: 2px dashed #555;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
}
.playing {
    outline: 2px solid lime;
}