* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  font-family: sans-serif;
  color: white;
}

.container {
  width: 100%;
  height: auto;
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.transaction-id {
  background-color: rgb(53, 53, 53);
  text-align: center;
  font-size: 20px;
  border-radius: 10px;
  padding: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.payment-info {
  background-color: rgb(53, 53, 53);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.amount {
  font-size: 24px;
  font-weight: bold;
}

.timer {
  background-color: #28a745;
  color: white;
  padding: 5px 20px;
  border-radius: 8px;
  width: fit-content;
}

.payment-methods ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-methods li {
  cursor: pointer;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  width: 45%;
}

.payment-methods li.selected {
  background-color: #0056b3;
}

.scanner {
  text-align: center;
  border-radius: 10px;
}

.qr-code {
  width: 240px;
  margin-bottom: 30px;
}

.url-input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.url-input input {
  width: 80%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.url-input button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form input {
  width: 90%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

form button {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#error-message {
  color: red;
  font-size: 14px;
  text-align: center;
}

.paymentprocess {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin-top: 20px;
}

/* payment process notice */

.title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.steps {
  list-style-type: decimal;
  padding-left: 20px;
  color: white;
}

.steps li {
  font-size: 18px;
  margin: 10px 0;
  text-align: left;
}

.steps li::marker {
  color: #4caf50; /* Green color for step number */
}

.steps li {
  padding-left: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .transaction-id {
    font-size: 15px;
  }
}
