@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("../fonts/HelveticaNeueLTPro_normal_normal_300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --hb-red: #e2001a;
  --hb-bg: #f5f5f7;
  --hb-dark: #111827;
  --hb-border: #e5e7eb;
  --hb-muted: #6b7280;
  --hb-font-base: "Helvetica Neue LT Pro", Arial, Helvetica, "Microsoft YaHei", "SimSun", "Noto Sans CJK SC", "Noto Sans JP", "Noto Sans KR", sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--hb-font-base);
  font-weight: 300;
  margin: 0;
  padding: 0;
  background: var(--hb-bg);
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--hb-font-base);
}

.topbar {
  background: var(--hb-dark);
  color: #f9fafb;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-title {
  font-size: 16px;
  font-weight: 600;
}

.topbar-user {
  font-size: 13px;
  color: #e5e7eb;
}

.topbar-user strong { color: #ffffff; }

.topbar a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 13px;
  margin-left: 16px;
}
.topbar a:hover { text-decoration: underline; }

.wrap {
  max-width: 1080px;
  margin: 24px auto;
  padding: 0 16px 32px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  padding: 20px 22px 22px;
  margin-bottom: 16px;
}

h1 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--hb-red);
}

h2 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--hb-dark);
}

p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: var(--hb-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { background: #b80015; }

.btn-secondary {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: var(--hb-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover { background: #374151; }

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 12px;
}

.alert-success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}

th, td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--hb-border);
  text-align: left;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--hb-muted);
}

tr:hover td { background: #f9fafb; }

.meta {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 16px;
}

.badge-small {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 11px;
}
