.admin-page { background: #f3f6f8; color: var(--ink); min-height: 100vh; }
.auth-card { background: white; color: var(--ink); padding: clamp(25px, 4vw, 46px); box-shadow: 0 25px 60px #041c3020; }
.auth-card h1 { font-size: clamp(38px, 5vw, 58px); margin-bottom: 12px; }
.auth-card > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.auth-form { display: grid; gap: 17px; }
.auth-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; }
.auth-form input { width: 100%; min-height: 50px; border: 1px solid #b8c7d0; padding: 10px 13px; color: var(--ink); background: white; }
.auth-status { min-height: 26px; margin-top: 18px; font-size: 14px; }
.auth-status.error { color: #9b291d; }
.admin-header { background: var(--navy); color: white; }
.admin-header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-header-actions { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.admin-header button { background: transparent; color: white; border-bottom: 1px solid #ffffff80; padding: 3px 0; }
.admin-main { padding-block: 45px 80px; }
.admin-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.admin-title h1 { font-size: clamp(42px, 6vw, 72px); }
.admin-title p { color: var(--muted); }
.admin-login { max-width: 520px; margin: 70px auto; }
.summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 32px; }
.summary-card { background: white; border-top: 4px solid var(--blue); padding: 23px; }
.summary-card strong { display: block; font: 400 43px/1 var(--serif); margin-top: 6px; }
.summary-card span { color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.admin-section { background: white; margin-top: 20px; padding: clamp(20px, 3vw, 34px); }
.admin-section-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.admin-section h2 { font-size: clamp(28px, 4vw, 40px); }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 850px; font-size: 14px; }
.admin-table th { text-align: left; padding: 11px 10px; border-bottom: 2px solid var(--navy); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.admin-table td { padding: 13px 10px; border-bottom: 1px solid #dce3e7; vertical-align: top; white-space: pre-line; }
.admin-table select { border: 1px solid #b8c7d0; padding: 6px 8px; background: white; }
.message-cell { max-width: 360px; white-space: normal; }
.empty-row { color: var(--muted); text-align: center; padding: 35px !important; }
.admin-error { background: #fff1ef; color: #8b251b; padding: 15px 18px; margin-bottom: 18px; }
@media (max-width: 720px) {
  .summary-grid { grid-template-columns: 1fr; }
  .admin-title { display: block; }
  .admin-title p { margin-top: 12px; }
  .admin-header-actions span { display: none; }
}
