/* Ticket options radio boxes style */
.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.ticket-option-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px dashed #616161;
  background: rgba(13, 24, 33, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  position: relative;
  text-transform: none;
}

.ticket-options label {
  display: flex;
}

label .ticket-option-desc {
  text-transform: none;
}

.ticket-option-box:hover {
  border-color: #00fefc;
  background: rgba(0, 254, 252, 0.02);
}

.ticket-option-box:has(input[type="radio"]:checked) {
  border-color: #00fefc;
  border-style: solid;
  background: rgba(0, 254, 252, 0.05);
}

.ticket-option-box input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  accent-color: #00fefc;
  flex-shrink: 0;
}

.ticket-option-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.ticket-option-title {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.ticket-option-price {
  font-family: "Source Code Pro", monospace;
  font-size: 24px;
  color: #00fefc;
  font-weight: 700;
}

.ticket-option-currency {
  font-size: 14px;
}

.ticket-option-desc {
  font-family: "Source Code Pro", monospace;
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.4;
  margin: 4px 0 6px 0;
}