/* 공통 스타일 */
.chill-hidden {
  display: none;
}
.chill-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
/* 진행 상태바 */
#chill-progress-bar-container {
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
#chill-progress-bar {
  width: 0%;
  height: 10px;
  background-color: #007bff;
  transition: width 0.3s;
}
/* 질문 스타일 */
#chill-question {
  font-size: 24px;
  margin: 20px 0px 50px 0px;
}
/* 답변 버튼 스타일 */
.chill-btn {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  font-size: 18px;
  cursor: pointer;
  border: none;
  background-color: #495057;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.chill-image {
  width: 100%;
  cursor: pointer;
}

#chill-question-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}
.chill-btn:hover {
  background-color: #343a40;
}
/* 모바일 친화적인 설정 */
@media screen and (max-width: 768px) {
  #chill-question {
    font-size: 22px;
  }
  .chill-btn {
    font-size: 16px;
    padding: 12px;
  }
}
