/* Minimal dark UI */
.gpsp-app{display:flex;gap:12px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;}
.gpsp-stage{flex:1; background:#0b1222; padding:12px; border-radius:10px; overflow:auto; height:80vh}
.gpsp-canvas-wrap{background:#0e1930; border:1px dashed #7aa1ff60; border-radius:12px; width:1080px;height:1080px; transform-origin:top left; margin:0 auto}
.gpsp-sidebar{width:380px; background:#091222; color:#e5ecff; border-radius:12px; padding:12px; display:flex; flex-direction:column; gap:14px}
.gpsp-tabs{display:flex; gap:6px; flex-wrap:wrap}
.gpsp-tabs button{background:#0f1c34; color:#e5ecff; border:1px solid #223; border-radius:20px; padding:6px 10px; cursor:pointer}
.gpsp-tabs button.active{background:#1e2f54}
.gpsp-panel{background:#0f1b30; border:1px solid #223; border-radius:10px; padding:10px}
.gpsp-row{display:flex; gap:8px; align-items:center; margin:8px 0}
.gpsp-grid{display:grid; grid-template-columns:120px 1fr; gap:8px; align-items:center}
.gpsp-btn{background:#2e5cff; color:#fff; border:none; border-radius:8px; padding:8px 10px; cursor:pointer}
.gpsp-btn.danger{background:#d33}
.gpsp-list{display:flex; flex-direction:column; gap:6px; max-height:220px; overflow:auto}
.gpsp-list .item{display:flex; justify-content:space-between; background:#0c1830; padding:6px 8px; border-radius:6px}
.gpsp-pexels{display:grid; grid-template-columns:repeat(3,1fr); gap:8px; max-height:220px; overflow:auto}
.gpsp-pexels img{width:100%; height:100px; object-fit:cover; border-radius:8px; cursor:pointer}
.gpsp-help{color:#9ab; font-size:12px}
/* inputs */
.gpsp-panel input[type=text], .gpsp-panel input[type=number], .gpsp-panel select, .gpsp-panel textarea{background:#0a1530; color:#e7efff; border:1px solid #223; border-radius:8px; padding:6px 8px}
.gpsp-panel textarea{resize:vertical}
