body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #181818;
    color: #fff;
}
#toolbar {
    background: #222;
    padding: 10px;
}
#toolbar button {
    margin-right: 10px;
    padding: 8px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}
#main-wrapper {
    display: flex;
    flex-direction: row;
}
#game-canvas {
    background: #111;
    border: 2px solid #444;
    margin: 20px;
    flex-shrink: 0;
}
#sidebar {
    background: #222;
    width: 300px;
    margin: 20px 0;
    padding: 16px;
    border-left: 2px solid #444;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}
#right-click-menu {
    position: absolute;
    background: #444;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    z-index: 100;
}
.hidden {
    display: none;
}
#script-section {
    margin-top: 20px;
}
#scripting-logo {
    display: inline-block;
    vertical-align: middle;
}
#script-preview {
    background: #333;
    padding: 8px;
    margin-top: 6px;
    white-space: pre-wrap;
    min-height: 40px;
    cursor: pointer;
}
#asset-info {
    background: #333;
    padding: 8px;
    margin-bottom: 15px;
}
#project-modal {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    border: 2px solid #444;
    padding: 20px;
    z-index: 200;
    color: #fff;
    min-width: 300px;
}
#project-modal.hidden {
    display: none;
}
#project-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}
#project-list .project-entry {
    border-bottom: 1px solid #333;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#project-list .project-entry.selected {
    background: #333;
}
#project-list button {
    background: #333;
    color: #fff;
    border: none;
    margin-left: 4px;
    cursor: pointer;
}