:root { --primary: #2563eb; --secondary: #64748b; --bg: #f1f5f9; --white: #ffffff; --text: #0f172a; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
body { background: var(--bg); color: var(--text); }
.hidden { display: none !important; }
.fade-in { animation: fadeIn 0.3s ease-in; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* LOGIN */
.login-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #1e293b; display: flex; align-items: center; justify-content: center; z-index: 999; }
.login-card { background: var(--white); padding: 2rem; border-radius: 12px; width: 90%; max-width: 350px; text-align: center; }
.input-group { margin: 1rem 0; text-align: left; }
.input-group label { font-size: 0.85rem; color: var(--secondary); display: block; margin-bottom: 0.5rem; }
input, select { width: 100%; padding: 10px; border: 1px solid #e2e8f0; border-radius: 6px; }

/* LAYOUT */
.mobile-header { background: var(--white); padding: 1rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e2e8f0; }
.brand { font-weight: bold; color: var(--primary); }
.main-content { padding: 1rem; max-width: 800px; margin: 0 auto; }
.page-title { margin: 1.5rem 0; font-size: 1.5rem; }

/* FORMS */
.form-card { background: var(--white); padding: 1.5rem; border-radius: 12px; margin-bottom: 1rem; }
.form-section-title { font-weight: bold; border-bottom: 1px solid #e2e8f0; padding-bottom: 0.5rem; margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-group-modern { display: flex; gap: 10px; }
.radio-group-modern label { flex: 1; position: relative; }
.radio-group-modern input { position: absolute; opacity: 0; }
.radio-group-modern span { display: block; padding: 10px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; text-align: center; font-weight: 500; }
.radio-group-modern input:checked + span { background: var(--primary); color: white; border-color: var(--primary); }

/* UPLOAD */
.upload-dropzone { border: 2px dashed #cbd5e1; padding: 2rem; text-align: center; border-radius: 12px; cursor: pointer; background: #f8fafc; display: block; }
.hidden-input { display: none; }
.file-list { margin-top: 10px; }
.file-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: #fff; border: 1px solid #e2e8f0; margin-bottom: 5px; border-radius: 6px; }

/* JOB CARDS */
.job-card { background: var(--white); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
.card-header { padding: 1rem; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; font-weight: bold; }
.status-badge { background: #f59e0b; color: white; padding: 2px 8px; border-radius: 10px; font-size: 0.8rem; }
.card-body { padding: 1rem; }
.card-footer { padding: 10px; background: #f8fafc; text-align: right; }

/* BUTTONS */
.btn-primary { background: var(--primary); color: white; border: none; padding: 12px; border-radius: 6px; width: 100%; cursor: pointer; font-weight: 600; }
.btn-sm { padding: 8px 16px; background: var(--primary); color: white; border: none; border-radius: 4px; cursor: pointer; }
.btn-outline { background: white; color: #333; border: 1px solid #ddd; }