fieldset {
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

legend {
  font-size: 1.1em;
  padding: 0 10px;
  font-weight: bold;
}

/* .package-section .package-options {
  display: flex;
  gap: 10px;
} */
.package-option {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  width: 48%;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.package-option input[type="radio"] {
  display: none;
}

.package-option span {
  display: block;
}

.price strike {
  color: red;
  font-size: 12px;
}

.balance {
  float: right;
  color: red;
}

.payment-method .payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.payment-option input[type="radio"] {
  display: none;
}

/* Selected effect */
.selected {
  background-color: #f0f8ff;
  border-color: #007bff;
}

.about-game-container {
  position: relative;
  padding: 16px 0px 16px 90px;
  min-height: 80px;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(243, 244, 244);
  background: rgb(247, 247, 247);
}

.game-image {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  /* Smaller image size */
  height: 60px;
  border-radius: 10px;
}

.game-details {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 60px;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 15px 5px 0px;
  box-sizing: border-box;
}

.game-name {
  margin: 1px 0px;
  width: 100%;
  color: rgb(0, 0, 0);
}