/* Editor Block Placeholder */
.power-maze-editor-placeholder {
    background: #f1f1f1;
    border: 2px dashed #999;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    color: #444;
}

/* Front-end Layout */
.power-maze-wrapper {
    margin: 20px 0;
    font-family: sans-serif;
}

.power-maze-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.power-maze-controls input[type="number"] {
    width: 60px;
    padding: 4px;
}


/* SVG Rendering */
.power-maze-output svg {
    max-width: 100%;
    height: auto;
    background-color: #fafafa;
    border: 2px solid #333;
}

/* Base style for walls */
.chamber {
    fill: url(#grid);
    stroke: #888;
    stroke-width: 2px;
}

.corridor {
    fill: url(#grid);
    stroke: #888;
    stroke-width: 2px;
}

.room-number {
    fill: #333;
    font-size: 16px;
    font-weight: bold;
    font-family: "Courier New", Courier, monospace;
}

/* Red marks for Entrance/Exit */
.door {
    fill: #ccc;
    stroke: #000;
    stroke-width: 1px;
}