body {
  font-family: "Noto Sans KR", sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 640px;
  margin: auto;
  padding: 20px;
}

/* 제목 */
h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

/* 날씨 */
#weather {
  text-align: center;
  margin: 10px 0 20px;
  color: #666;
}

/* 폼 박스 */
.form-box {
  background: white;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

/* step */
.step {
  margin-bottom: 20px;
}

.step p {
  font-weight: 600;
}

/* 버튼 */
.option {
  margin: 5px;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

.option.active {
  background: #ff7a59;
  color: white;
  border-color: #ff7a59;
}

/* CTA */
.cta {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  background: #ff7a59;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.cta.secondary {
  background: white;
  border: 1px solid #ddd;
  color: black;
}

.cta.today {
  background: #fff3ef;
  color: #ff7a59;
}

.f5{
background:white;
border: 1px solid #ff7a59;
width:30px;
height:30px;
border-radius:50%;
cursor:pointer;
font-size:12px;
}

.f5:hover {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* 카드 */
.card {
  background: white;
  border-radius: 16px;
  padding: 15px;
  margin-top: 15px;
}

/* TOP 버튼 */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff7a59;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

/* footer */
footer {
  text-align: center;
  padding: 20px;
  color: #888;
}