body {
  background-color: var(--stripe-light);
}
.container {
  max-width: 600px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background-color: var(--button-press);
  border-color: var(--button-press);
}
#result {
  display: none;
}

.copyable-text {
  cursor: pointer;
  color: #007bff;
  font-weight: 500;
  transition: color 0.2s;
}
.copyable-text:hover {
  text-decoration: underline;
  color: #0056b3;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.payment-methods button {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-methods button:hover {
  background: #e9ecef;
}
.payment-methods button.active {
  background: var(--button-press);
  border-color: var(--button-press);
}
.payment-methods button img {
  max-height: 40px;
  max-width: 100%;
}

.amount-currency-container {
  display: flex;
  gap: 10px;
}
.alert-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 500px;
}
.currency-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.currency-btn-grid button {
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}
.custom-pills {
  background-color: #f3f6f9;
  padding: 6px;
  border-radius: 12px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  border: 1px solid #e1e1e1;
}
.custom-pills .nav-item {
  margin: 0;
}
.custom-pills .nav-link {
  border-radius: 8px;
  color: #6c757d;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border: none;
  transition: all 0.2s ease;
}
.custom-pills .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
}
.custom-pills .nav-link.active {
  background-color: #ffffff !important;
  color: var(--stripe-blue) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
}
