body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f4f6f9;
}

.editor-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* TOPBAR */

.editor-topbar {
    height: 60px;
    background: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.editor-topbar button {
    background: #2563eb;
    border: none;
    padding: 8px 14px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.editor-topbar button:hover {
    background: #1d4ed8;
}

/* BODY */

.editor-body {
    flex: 1;
    display: flex;
}

/* SIDEBAR */

.editor-sidebar {
    width: 220px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    padding: 20px;
}

.editor-sidebar h3 {
    margin-top: 0;
}

.editor-sidebar button {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    background: #f9fafb;
    cursor: pointer;
    border-radius: 6px;
}

.editor-sidebar button:hover {
    background: #e5e7eb;
}

/* CANVAS */

.editor-canvas-area {
    flex: 1;
    position: relative;
    background: #e5e7eb;
}

#editor-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* INSPECTOR */

.editor-inspector {
    width: 250px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    padding: 20px;
}

.editor-inspector h3 {
    margin-top: 0;
}

.editor-inspector label {
    display: block;
    margin-top: 15px;
    font-size: 13px;
}

.editor-inspector input {
    width: 100%;
    margin-top: 5px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
}