@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); body { font-family: 'Inter', sans-serif; } #editor-canvas { min-height: 400px; border: 2px dashed #d1d5db; transition: all 0.3s ease; } #editor-canvas:hover { border-color: #84cc16; } .prompt-textarea { resize: none; transition: all 0.2s ease; } .prompt-textarea:focus { outline: none; box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.5); }