.matchmaking-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.matchmaking-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #2b4486;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.matchmaking-radio:has(input:checked) {
  background: #cffe61;
  color: #000;
}
.matchmaking-radio input {
  accent-color: #cffe61;
  cursor: pointer;
}

.booking-form textarea {
  padding: 10px 12px;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  background: #2b4486;
  color: #fff;
  font-family: 'Stack Sans Headline', sans-serif;
  font-size: 15px;
  resize: vertical;
}
.booking-form textarea::placeholder {
  color: #b3afaf;
}

.matchmaking-text {
  color: #e8e6e0;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
}