.radio-group-custom {
  display: flex;
  gap: 20px;
}

.radio-input-custom {
  display: none;
}

.radio-label-custom {
  padding: 10px 25px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.radio-input-custom:checked + .radio-label-custom {
  background-color: #dbeafe; /* biru muda */
  border: 1px solid #3b82f6; /* biru border */
  color: #000;
  font-weight: 500;
}