.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff;
  box-shadow: 0 6px 16px rgba(26, 102, 204, 0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(26, 102, 204, 0.35);
}

.btn-white {
  background: #fff;
  color: var(--blue-800);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover { transform: translateY(-1px); }

.btn-danger {
  background: #b91c1c;
  color: #fff;
}
.btn-danger:hover { background: #991b1b; }

.btn-lg { padding: 13px 20px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field span {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(26, 102, 204, 0.12);
}
.field input:disabled { background: var(--line-soft); color: var(--muted); }

.section-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-weight: 700;
}

.notice {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.table-wrap { overflow-x: auto; }

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}
