/* 📌 Tablo Konteyneri */
.table-container {
  width: 100%;
  max-width: 1200px; /* Geniş ekran için maksimum genişlik */
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-x: auto; /* Mobilde kayma olmaması için */
}

/* 📌 Başlık */
.table-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: left; /* Sola hizalandı */
}

/* 📌 Tablo Stili */
.feature-table {
  width: 100%;
  border-collapse: collapse;
}

/* 📌 Başlıklar */
.feature-table th {
  background-color: #0078d4;
  color: white;
  font-size: 1.2rem;
  text-align: left; /* Sola hizalandı */
  padding: 12px;
}

/* 📌 Hücreler */
.feature-table td {
  font-size: 1rem;
  color: #333;
  padding: 12px;
  text-align: left; /* Sola hizalandı */
  border-bottom: 1px solid #ddd;
}

/* 📌 Alternatif Satır Rengi */
.feature-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* 📌 Durum Sütunu (Emoji + Yazı Yan Yana) */
.status {
  display: flex;
  align-items: center;
  gap: 8px; /* Emoji ile yazı arasında boşluk */
  text-align: left; /* Sola hizalandı */
  font-weight: bold;
}

/* 📌 Mevcut Olan Özellikler */
.status .available {
  color: #28a745;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

/* 📌 Opsiyonel Özellikler */
.status .optional {
  color: #ff9800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

/* 📌 Fiyat Alanı */
.price-container {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 📌 Eski Fiyat */
.old-price {
  font-size: 1.5rem;
  color: #dc3545;
  text-decoration: line-through;
  margin-right: 10px;
}

/* 📌 Yeni Fiyat */
.new-price {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

/* 📌 İndirim Bilgisi */
.discount-text {
  font-size: 1rem;
  color: #ff9800;
  font-weight: bold;
  margin-top: 5px;
}

/* 📌 Mobil İçin Düzenlemeler */
@media (max-width: 768px) {
  .table-container {
    width: 100%;
    padding: 10px;
    overflow-x: auto; /* Mobilde taşmayı engelle */
  }

  .table-title {
    font-size: 1.4rem;
  }

  .feature-table th,
  .feature-table td {
    font-size: 0.9rem; /* Yazıları küçült */
    padding: 10px;
  }

  /* 📌 Fiyat Alanı Mobil */
  .price-container {
    max-width: 100%;
    padding: 10px;
    text-align: center;
  }

  .old-price {
    font-size: 1.3rem;
  }

  .new-price {
    font-size: 1.8rem;
  }

  .discount-text {
    font-size: 0.9rem;
  }
}
