.application-select {
  background: #f5f9fc;
  padding: 20px;
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}

.select-label {
  display: block;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
}

.select-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.select-options input[type="radio"] {
  display: none;
}

.select-options label {
  cursor: pointer;
  padding: 10px 20px;
  border: 2px solid #4482c9;
  border-radius: 30px;
  color: #4482c9;
  transition: all 0.2s ease;
  font-weight: 500;
  user-select: none;
  display: inline-block;
}

.select-options input[type="radio"]:checked + label {
  background-color: #4482c9;
  color: #fff;
}