/* 📌 Modül Tablosu Konteyneri */
.module-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 taşmayı önler */
}

/* 📌 Başlık */
.module-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: left; /* Sola hizalandı */
}

/* 📌 Tablo Stili */
.module-table {
  width: 100%;
  border-collapse: collapse;
}

/* 📌 Başlıklar */
.module-table th {
  background-color: #0078d4;
  color: white;
  font-size: 1.2rem;
  text-align: left; /* Sola hizalandı */
  padding: 12px;
}

/* 📌 Hücreler */
.module-table td {
  font-size: 1rem;
  color: #333;
  padding: 12px;
  text-align: left; /* Sola hizalandı */
  border-bottom: 1px solid #ddd;
}

/* 📌 Alternatif Satır Rengi */
.module-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* 📌 Fiyat Sütunu */
.price {
  text-align: left; /* Sola hizalandı */
  font-weight: bold;
  color: #28a745;
}

/* 📌 Mobil İçin Düzenlemeler */
@media (max-width: 768px) {
  .module-container {
    width: 100%;
    padding: 10px;
    overflow-x: auto; /* Mobilde taşmayı engeller */
  }

  .module-title {
    font-size: 1.4rem;
  }

  .module-table th,
  .module-table td {
    font-size: 0.9rem; /* Yazıları küçült */
    padding: 10px;
  }

  .price {
    font-size: 1rem;
  }
}
