body {
  background: #2a0a0a;
  font-family: 'Inter', sans-serif;
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 700px;
  margin: auto;
  background: #eee;
  padding: 30px;
  border-radius: 10px;
}

h2 {
  color: #e63946;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.order-summary,
.payment-info {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  align-items: center; /* Vertically align items in the middle */
  margin: 10px 0;
}

/* Adjust label within payment option to be flex too, for aligning input and image */
.payment-option label {
  display: flex;
  align-items: left;
  /* CHANGE HERE: Set gap to 0 or remove this line to eliminate space */
  gap: 5px; /* Changed from 10px to 0px */
  margin-top: 0;
  font-weight: normal;
  cursor: pointer;
}

/* Ensure the radio button inside the label is styled correctly */
.payment-option label input[type="radio"] {
  width: auto;
  margin: 0;
  padding: 0;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

.pay-note {
  background: #000;
  color: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 6px;
}

.place-order {
  background: orange;
  padding: 14px;
  width: 100%;
  font-size: 1.1em;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.security-logos {
  text-align: center;
  margin-top: 20px;
}

.security-logos img {
  height: 40px;
  margin: 0 10px;
}

.confirmation {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
  display: none;
}

.confirmation h3 {
  color: green;
}