:root { --bg: #0f172a; --card: #1e293b; --text: #f8fafc; --accent: #38bdf8; --match: #fbbf24; --danger: #ef4444; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); display: flex; justify-content: center; padding: 20px; }
.card { background: var(--card); padding: 1.5rem; border-radius: 16px; width: 550px; border: 1px solid #334155; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.stat-box { background: #00000044; padding: 8px; border-radius: 6px; border: 1px solid #ffffff11; font-size: 0.75rem; color: #94a3b8; }
.match-text { color: var(--match); }
.status-bar { font-size: 0.7rem; margin-bottom: 10px; color: #94a3b8; font-weight: bold; display: flex; align-items: center; }
.badge { margin-left: 10px; padding: 2px 8px; background: var(--accent); color: #0f172a; border-radius: 4px; font-size: 0.65rem; font-weight: 900; }
.progress-container { background: #334155; height: 6px; border-radius: 3px; margin-bottom: 15px; }
#progressBar { height: 100%; width: 0%; background: var(--accent); transition: width 0.2s; }
label { display: block; font-size: 0.7rem; margin: 8px 0 2px 0; color: #94a3b8; }
input, .btn { width: 100%; padding: 10px; border-radius: 6px; border: none; box-sizing: border-box; }
input { background: #334155; color: white; border: 1px solid #475569; font-size: 0.8rem; }
.btn { cursor: pointer; font-weight: 600; margin: 4px 0; font-size: 0.85rem; }
.btn-primary { background: var(--accent); color: #0f172a; }
.btn-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.btn-save { background: #10b981; color: white; }
.btn-txt { background: #6366f1; color: white; }
.btn-reset { background: #64748b; color: white; }
.btn-danger { background: var(--danger); color: white; }
.resume-section { background: rgba(0,0,0,0.2); padding: 10px; border-radius: 8px; margin: 15px 0; border: 1px dashed #475569; }
#resume-preview { font-size: 0.7rem; color: var(--match); margin-top: 5px; font-family: monospace; white-space: pre-wrap; }
.tab-container { display: grid; grid-template-columns: 1fr 1fr; margin-top: 15px; }
.tab-btn { padding: 10px; background: #334155; color: #94a3b8; border: none; cursor: pointer; border-radius: 6px 6px 0 0; }
.tab-btn.active { background: #475569; color: white; border-bottom: 2px solid var(--accent); }
.output-area { height: 200px; overflow-y: auto; background: #000; padding: 10px; border-radius: 0 0 6px 6px; font-family: monospace; font-size: 0.85rem; }
.match-highlight { color: var(--match); background: rgba(251, 191, 36, 0.1); border-left: 2px solid var(--match); padding-left: 5px; }
.hidden { display: none; }
