*{box-sizing:border-box;margin:0;padding:0}body{font-family:sans-serif;display:flex;flex-direction:column;min-height:100vh;background-color:#f4f4f4;padding-top:60px;padding-bottom:40px}header{position:fixed;top:0;left:0;width:100%;background-color:#333;color:#fff;padding:10px 20px;display:flex;justify-content:space-between;align-items:center;height:60px;z-index:1000}header h1{font-size:1.5em;margin:0}header .return-button{background-color:#555;color:#fff;border:none;padding:8px 15px;border-radius:4px;cursor:pointer;text-decoration:none;font-size:.9em;display:inline-flex;align-items:center;transition:background-color .3s ease}header .return-button:hover{background-color:#777}header .return-button i{margin-right:8px}main{padding:20px;max-width:900px;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:20px;background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:5px}.controls{background-color:#eee;padding:15px;margin-bottom:20px;border-radius:5px;display:flex;flex-wrap:wrap;gap:15px;align-items:center}.controls label{font-weight:700;margin-right:5px}.controls input[type=number],.controls select{padding:8px;border:1px solid #ccc;border-radius:4px;min-width:80px}.controls button#generateButton{padding:10px 15px;background-color:#007bff;color:#fff;border:none;border-radius:4px;cursor:pointer;transition:background-color .3s ease}.controls button#generateButton:hover{background-color:#0056b3}.output-controls{display:flex;justify-content:flex-end;align-items:center;margin-bottom:10px}#copyButton{padding:8px 12px;background-color:#6c757d;color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:.9em;transition:background-color .3s ease;display:inline-flex;align-items:center}#copyButton:hover{background-color:#5a6268}#copyButton i{margin-right:6px}.copy-feedback{margin-left:10px;font-size:.9em;color:green}.output-area{background-color:#f9f9f9;border:1px solid #ddd;padding:15px;min-height:150px;border-radius:4px;white-space:pre-wrap;line-height:1.6;overflow-y:auto;max-height:60vh}.output-area p{margin-bottom:1em}.output-area p:last-child{margin-bottom:0}footer{position:fixed;bottom:0;left:0;width:100%;background-color:#333;color:#ccc;text-align:center;padding:10px 0;height:40px;font-size:.9em;z-index:1000}footer a{color:#fff;text-decoration:none}footer a:hover{text-decoration:underline}