body {
  background-color: #F0E8D8;
  color: #3A2E22;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #C8854A;
  margin-bottom: 0.5rem;
  word-spacing: -0.2em;
}

p {
  font-size: 1rem;
  color: #7A6A54;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.question {
  margin-bottom: 2rem;
}

.question p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #3A2E22;
  margin-bottom: 0.75rem;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  background: transparent;
  border: 1px solid #C8A080;
  color: #3A2E22;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
}

.option:hover {
  background: #C8854A;
  color: #FAF8F4;
  border-color: #C8854A;
}

.option.selected {
  background: #C8854A;
  color: #FAF8F4;
  border-color: #C8854A;
}

input {
  background: #FAF8F4;
  border: 1px solid #C8A080;
  color: #3A2E22;
  padding: 8px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  width: 120px;
}

#submit {
  background: #C8854A;
  color: #FAF8F4;
  border: none;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}

#submit:hover {
  background: #3A2E22;
  color: #FAF8F4;
}
#web-container {
  margin-top: 3rem;
  border-top: 1px solid #C8A080;
  padding-top: 2rem;
  width: 100%;
}

#web {
  width: 100%;
  height: 500px;
  display: block;
}
#legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #7A6A54;
}

.legend-line {
  display: inline-block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}
#web-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

#session-label {
  font-size: 0.9rem;
  color: #C8854A;
  margin-bottom: 0;
}

#visitor-count {
  font-size: 0.9rem;
  color: #7A6A54;
  margin-bottom: 0;
}
#reset-container {
  margin-top: 3rem;
  border-top: 1px solid #C8A080;
  padding-top: 1.5rem;
  text-align: right;
}

#reset-btn {
  background: transparent;
  border: 1px solid #C8A080;
  color: #7A6A54;
  padding: 8px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
}

#reset-btn:hover {
  background: #3A2E22;
  color: #FAF8F4;
  border-color: #3A2E22;
}
#copyright {
  font-size: 0.75rem;
  color: #B0A090;
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 0.5px solid #C8A080;
}
