* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; color: #17202a; background: #f6f8fb; }
a { color: #0f766e; text-decoration: none; }
.shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 48px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.brand h1 { margin: 0 0 6px; font-size: 34px; }
.brand p { margin: 0; color: #617080; }
.panel { background: #fff; border: 1px solid #d8dee8; border-radius: 8px; padding: 18px; box-shadow: 0 18px 45px rgba(17,24,39,.08); }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field.full { grid-column: 1 / -1; }
label { color: #3d4b5c; font-size: 12px; font-weight: 700; text-transform: uppercase; }
input, textarea, select { width: 100%; border: 1px solid #d8dee8; border-radius: 8px; padding: 10px 11px; font: inherit; }
textarea { min-height: 88px; resize: vertical; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 14px; border: 0; border-radius: 8px; background: #17202a; color: #fff; cursor: pointer; }
.btn.secondary { background: #fff; color: #17202a; border: 1px solid #d8dee8; }
.btn.danger { background: #b42318; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.message { padding: 12px; margin-bottom: 14px; border-radius: 8px; background: #e8f4f2; color: #0f766e; }
.error { background: #fff1f0; color: #b42318; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px; border-bottom: 1px solid #d8dee8; text-align: left; }
.education-row { border: 1px solid #d8dee8; border-radius: 8px; padding: 12px; margin-bottom: 12px; }
.muted { color: #617080; }
.upload-files { margin: 0 0 14px; border: 1px solid #d8dee8; border-radius: 8px; overflow: hidden; }
.upload-file { display: flex; justify-content: space-between; gap: 16px; padding: 9px 11px; border-bottom: 1px solid #e7ebf0; }
.upload-file:last-child { border-bottom: 0; }
.upload-file span:first-child { min-width: 0; overflow-wrap: anywhere; }
.upload-status { margin: 0 0 14px; padding: 12px; background: #f6f8fb; border: 1px solid #d8dee8; border-radius: 8px; }
.upload-status-line { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.upload-status p { margin: 8px 0 0; font-size: 13px; }
.progress-track { height: 10px; overflow: hidden; border-radius: 5px; background: #dfe5ec; }
.progress-bar { width: 0; height: 100%; background: #0f766e; transition: width .2s ease; }
.progress-bar.processing { width: 35% !important; animation: processing 1.35s ease-in-out infinite alternate; }
.progress-bar.failed { width: 100% !important; background: #b42318; }
.btn:disabled { cursor: wait; opacity: .65; }
@keyframes processing { from { transform: translateX(-100%); } to { transform: translateX(285%); } }
@media (prefers-reduced-motion: reduce) { .progress-bar { transition: none; } .progress-bar.processing { animation: none; width: 100% !important; } }
@media (max-width: 800px) { .grid, .grid-3 { grid-template-columns: 1fr; } .topbar { align-items: flex-start; flex-direction: column; } }
