@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  background-color: #f4f4f4;
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-weight: 100;
}

h5 {
  font-weight: 400;
}

.survey-container {
  border: none;
  box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
}

button {
  border-radius: 2em !important;
}

.card-header {
  background-color: #30a3b0;
  color: white;
}

/* Custom styles for Yes/No radio buttons */
.form-check-inline .form-check-input {
  width: 1.5em;
  height: 1.5em;
}

.form-check-inline .form-check-label {
  font-size: 1.2rem;
  padding-left: 0.5em;
  line-height: 1.5em; /* Align text vertically with the larger radio button */
}

.rating-inputs {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 5px;
  margin-top: 10px;
}

.button-group .btn {
  margin: 0 5px;
}

.rating-item {
  text-align: center;
  flex: 1;
}

.rating-item input[type="radio"] {
  display: none;
  /* Hide the actual radio button */
}

.rating-item label {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  margin: 0 auto;
}

.rating-item label:hover {
  background-color: #e9ecef;
  transform: scale(1.1);
}

.rating-item input[type="radio"]:checked + label {
  background-color: #007bff;
  color: #fff;
}

.rating-labels {
  padding: 0 15px;
  color: #6c757d;
  font-size: 0.9rem;
}
