* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML, Body 기본 스타일링 */
html,
body {
  font-family: "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
  color: #202124;
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 모바일 환경 기본 패딩 */
body {
  padding: 20px;
}

/* 반응형 디자인: 화면 폭이 768px 이상인 경우 */
@media screen and (min-width: 768px) {
  body {
    padding: 40px;
  }
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

p {
  line-height: 2;
}

.title {
  font-size: 2rem;
  font-weight: 500;
}

.divider {
  border: none;
  border-top: 1px solid #dadce0;
  margin: 20px 0;
}

.question-list {
  margin-bottom: 20px;
}

.question-item {
  margin-bottom: 30px;
}

.question-img {
  display: block;
  margin: 0 auto 15px;
}

.question-text {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.question-score {
  font-size: 0.95rem;
  color: #5f6368;
  margin-bottom: 10px;
}

.container {
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #5f6368;
}

.form-input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #dadce0;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.form-input:focus {
  border-color: #4285f4;
  outline: none;
}

.btn {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.primary-btn {
  background-color: #4285f4;
  color: #fff;
}
.primary-btn:hover {
  background-color: #357ae8;
}

.secondary-btn {
  background-color: #f8f9fa;
  color: #3c4043;
  border: 1px solid #dadce0;
}
.secondary-btn:hover {
  background-color: #e8eaed;
}

.info-btn {
  background-color: #25f0ff;
}
.info-btn:hover {
  background-color: #1ebbbb;
}

.danger-btn {
  background-color: #d93025;
  color: #fff;
}
.danger-btn:hover {
  background-color: #b1271b;
}

@media screen and (min-width: 768px) {
  .form-input {
    font-size: 1.1rem;
  }
  .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
  }
}
