/*!
 * siparis.css  –  Sipariş sayfası stilleri
 * Bu dosya, sipariş listesi ve düzenleme sayfalarında kullanılan
 * tüm özel CSS kurallarını içerir. Dilediğiniz öğeyi buradan 
 * kolayca müdahale edip özelleştirebilirsiniz.
 */

/* container boşluğu */
.siparis-container {
  margin-top: 1.5rem;
}

/* tablo genel */
#urunTablo,
.table-siparis-detay {
  width: 100%;
  border-collapse: collapse;
}
#urunTablo th,
#urunTablo td,
.table-siparis-detay th,
.table-siparis-detay td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: middle;
}

/* başlık satırı */
#urunTablo thead,
.table-siparis-detay thead {
  background-color: #f8f9fa;
  font-weight: 600;
  color: yellow;
}

/* Lieferschein kutusu */
.lieferschein-style {
  border: 2px dashed #bbb;
  background-color: #fcfcfc;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* sipariş detay içeriği */
.siparis-icerik p {
  margin: .5rem 0;
  line-height: 1.5;
}
.siparis-icerik table {
  margin-top: .75rem;
}

/* mobilde yatay kaydırma */
@media (max-width: 768px) {
  #urunTablo,
  .table-siparis-detay {
    display: block;
    overflow-x: auto;
  }
}
