h1 {
  margin-bottom: 10px;
}

h2 {
  font-size: 18px;
  margin-top: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

h3 {
  font-weight: normal;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
}

label {
  display: block;
  margin: 20px 0 10px;
}

.stars {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}

.star.selected {
  color: gold;
}

.rating-scale {
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.rating-scale .scale {
  display: flex;
  gap: 5px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.rating-scale .scale-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: #777;
}

.rating-scale button {
  width: 55px;
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rating-scale button:hover {
  border: 2px solid green;
}

.rating-scale button.selected {
  background-color: #00d600;
  color: white;
  border: 2px solid green;
}

textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  resize: vertical;
}

.recommend {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.recommend button {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* YES styles */
.yes-btn {
  transition: all 0.5s linear;
  border: 1px solid #ccc;
}

.yes-btn:hover,
.yes-btn.active {
  border: 1px solid #00d600;
  color: #00d600;
}

/* NO styles */
.no-btn {
  transition: all 0.5s linear;
  border: 1px solid #ccc;
}

.no-btn:hover,
.no-btn.active {
  border: 1px solid red;
  color: red;
}

.next-btn {
  background-color: #00d600;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}

.gray-btn {
  color: rgb(17, 17, 17);
  background-color: rgb(231, 231, 231);
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
}

.stars {
  font-size: 32px;
  display: flex;
  gap: 8px;
  cursor: pointer;
  color: #ccc;
  /* default color */
}

.stars .star {
  transition: color 0.2s;
}

.stars .star.filled {
  color: rgb(14, 193, 47);
  /* gold fill for selected stars */
}

.scale button {
  width: 55px;
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (max-width: 575px) {
  .scale button {
    width: 29px;
    height: 30px;
  }
}
.scale button:hover {
  border: 1px solid #00d600;
}

.scale button.active {
  background-color: #00d600;
  color: white;
  border: 1px solid #00d600;
}

.green-spinner {
  color: #00d600;
}/*# sourceMappingURL=survey.css.map */