:root { --bg-color: #121214; --card-bg: #1a1a1e; --accent: #6366f1; --text: #e4e4e7; --text-muted: #a1a1aa; } body { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: var(--bg-color); color: var(--text); display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; padding: 20px; } .container { background-color: var(--card-bg); padding: 2rem; border-radius: 12px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); width: 100%; max-width: 500px; border: 1px solid #2e2e33; } h1 { font-size: 1.5rem; margin-top: 0; color: #fff; } p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; } input { width: 100%; padding: 12px; background: #27272a; border: 1px solid #3f3f46; border-radius: 6px; color: #fff; box-sizing: border-box; margin-bottom: 1rem; font-size: 1md; } input:focus { outline: none; border-color: var(--accent); } button { width: 100%; padding: 12px; background-color: var(--accent); color: white; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.2s; } button:hover { background-color: #4f46e5; } button:disabled { background-color: #3f3f46; cursor: not-allowed; } /* Progress Bar Styling */ #progress-container { display: none; margin-top: 1.5rem; } .status-text { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 5px; display: flex; justify-content: space-between; } .progress-bar-bg { width: 100%; height: 8px; background-color: #27272a; border-radius: 4px; overflow: hidden; } #progress-bar-fill { width: 0%; height: 100%; background-color: var(--accent); transition: width 0.1s ease; } #output { margin-top: 1.5rem; padding: 12px; background: #27272a; border-radius: 6px; min-height: 50px; white-space: pre-wrap; font-size: 0.95rem; display: none; border-left: 4px solid var(--accent); }
