:root{
    --navy:#09203f;
    --blue:#1f6fd1;
    --gold:#d8a735;
    --light:#f6f8fb;
    --card:#ffffff;
    --text:#162033;
    --muted:#6f7b8d;
    --border:#dce3ee;
}
*{box-sizing:border-box}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:linear-gradient(135deg,#07172f,#123c69 48%,#eaf1f8 48%,#f7f9fc);
    color:var(--text);
    min-height:100vh;
}
.header{
    padding:34px 20px 22px;
    text-align:center;
    color:white;
}
.logo{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:14px 20px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:18px;
    background:rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.logo-mark{
    width:58px;height:58px;border-radius:16px;
    background:linear-gradient(135deg,#f6d675,#b98519);
    color:#09203f;font-weight:900;font-size:34px;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 8px 22px rgba(216,167,53,.35);
}
.logo-text strong{display:block;font-size:28px;letter-spacing:.8px}
.logo-text span{display:block;color:#f1d38a;font-size:14px;letter-spacing:4px;margin-top:2px}
.header p{margin:18px 0 0;color:#dbe7f7;font-size:17px}
.wrap{max-width:1100px;margin:0 auto;padding:0 18px 40px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:start}
.card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
    box-shadow:0 20px 55px rgba(9,32,63,.15);
}
h1,h2{margin:0 0 14px;color:var(--navy)}
h1{font-size:26px}h2{font-size:21px}
label{display:block;margin:14px 0 7px;font-weight:700;color:var(--navy)}
input,select,textarea{
    width:100%;padding:12px 13px;border:1px solid #cfd8e6;border-radius:12px;
    font-size:15px;background:#fff;color:var(--text);
}
textarea{min-height:112px;resize:vertical}
button,.btn{
    display:inline-block;border:0;border-radius:12px;background:linear-gradient(135deg,var(--blue),#0e4fa3);
    color:white;padding:13px 18px;font-weight:700;font-size:15px;cursor:pointer;text-decoration:none;
    box-shadow:0 10px 22px rgba(31,111,209,.25);
}
button:hover,.btn:hover{filter:brightness(.96)}
.notice{padding:13px 15px;border-radius:12px;margin-bottom:16px;font-weight:700}
.success{background:#e8f7ee;color:#166534;border:1px solid #bfe8cd}
.error{background:#fdeaea;color:#991b1b;border:1px solid #f4b8b8}
.table-wrap{overflow:auto;border:1px solid var(--border);border-radius:14px}
table{width:100%;border-collapse:collapse;font-size:14px;background:white}
th,td{padding:12px;border-bottom:1px solid var(--border);text-align:left;vertical-align:top}
th{background:#f1f5fb;color:var(--navy);white-space:nowrap}
.status{display:inline-block;padding:5px 9px;border-radius:999px;background:#eef5ff;color:#16498c;font-weight:700;font-size:12px}
.small{font-size:13px;color:var(--muted)}
.footer{text-align:center;color:#dce7f5;padding:12px 0 30px;font-size:13px}
@media(max-width:850px){.grid{grid-template-columns:1fr}.logo-text strong{font-size:22px}.logo{align-items:flex-start}.header{padding-top:22px}}


.project-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:16px 0 8px;
}
.filter-form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
    margin:14px 0 18px;
}
.filter-form select{
    max-width:220px;
}
.wide-card{
    width:100%;
}
table a{
    color:var(--blue);
    font-weight:700;
    text-decoration:underline;
}
