/* MODAL ARKA PLAN */
.paymentModal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 9999;
}

/* MODAL KUTU */
.paymentModal-content {
  background: #fff;
  width: 360px;
  padding: 20px;
  margin: 12% auto;
  border-radius: 10px;
  position: relative;
  font-family: Arial;
}

/* BAŞLIK */
.paymentModal-header-title {
  color: #007bff; /* mavi */
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* ALT ÇİZGİ */
.header-line {
  width: 100%;
  height: 2px;
  background: #007bff; /* mavi çizgi */
  margin-bottom: 15px;
}

/* KIRMIZI UYARI */
.warning-text {
  color: #ff0000;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* ALT AÇIKLAMA */
.sub-text {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

/* BUTON ALANI */
.button-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* BUTONLAR */
.btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.btn-pay {
  background: #007bff;
  color: white;
}

.btn-later {
  background: #ddd;
}

.btn-later:hover {
  background: #ccc;
}
.payment-container {
    width: 380px;
    margin: 60px auto;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.payment-title {
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
}

.payment-form label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.payment-form input {
    width: 100%;
    padding: 10px;
    margin: 6px 0 15px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.row {
    display: flex;
    gap: 15px;
}

.column {
    flex: 1;
}

.pay-button {
    width: 100%;
    padding: 12px;
    background: #28a745;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.pay-button:hover {
    background: #218838;
}
