:root {
  --brand: #0ea5e9;
  --brand-dark: #0369a1;
  --ink: #0f172a;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 16px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #cbd5f5;
  color: var(--ink);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 14px;
}

.btn-ghost {
  color: #475569;
  padding: 10px 12px;
  font-weight: 600;
}

.btn-choice {
  border-radius: 18px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
}

.btn-choice:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: #e0f2fe;
}

.company-card {
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 16px;
  background: #f8fafc;
}

.type-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 16px;
  background: #ffffff;
}

.type-image {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  background: #e2e8f0;
}

@media print {
  body {
    background: #ffffff !important;
  }

  .no-print {
    display: none !important;
  }

  .company-card {
    page-break-inside: avoid;
    border: 2px solid #0ea5e9;
  }
}
