@charset "UTF-8";
/* CSS Document */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  padding: 1rem;
  margin: auto;
  background: #FFF7ED;
  color: #1F2937;
}
h1, h2 {
  margin-top: 1.5rem;
}
.card {
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  max-width: 800px;
  background: #fff;
}
a {
  color: #1D4ED8;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  text-decoration-thickness: 3px;
  color: #6F451E;
}
label {
  font-weight: 600;
  display: block;
  margin-top: 0.75rem;
}
input, button {
  font: inherit;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 8px;
  border: 1px solid #999;
  width: 100%;
  max-width: 300px;
}
button {
  cursor: pointer;
  width: auto;
  margin-top: 1rem;
  background: #8B5E34;
  color: #FFFFFF;
  border: 2px solid transparent;
}
button:hover {
  background: #6F451E;
}
input, select, textarea {
  background: #fff;
  color: #1F2937;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline: 3px solid #2563EB;
  outline-offset: 2px;
  border-color: #2563EB;
}
ul {
  padding-left: 1.25rem;
}
.muted {
  color: #4B5563;
}
.notice {
  background: #FFFBEB;
  border-left: 6px solid #F59E0B;
  border-radius: 10px;
  padding: 0.75rem;
  margin-top: 0.75rem;
  color: #1F2937;
}
img {
  max-width: 100%;
}