

/* 
===========================================
✅  Tablet yatay için geçerli
===========================================
*/

@media only screen and (max-width: 1366px) {

    /* 
    🎯 (quotes_create) teklif oluşturma sayfasında her satırdaki inputların ekrana tam sığması için ayarlama yapıldı.
    #quotes_create .card-body .tw-min-w-\[1200px\] {
    */
    #quotes_create .tf-rows {
        min-width: 1110px!important;
    }

    #quotes_create #products-card .tf-rows-headers {
        min-width: 1120px!important;
    }

    /* 
    🎯 (quotes_list) Teklifler listesinde yer kazanmak için oluşturma sütunu gizleme
    */
    #quotes_list .entities.list table th:nth-child(11),
    #quotes_list .entities.list table td:nth-child(11) {
        display: none;
    }

}

/* 
===========================================
✅  Mobil cihazlar için CSS Düzenlemeleri
✅  Ekran genişliği 600 pikselden küçük olan cihazlar için geçerli
===========================================
*/

@media only screen and (max-width: 600px) {

    /* 
    🎯 (quotes_info) teklif detay sayfasında ürünlerin olduğu ilk tabloyu ekrana sığdırmak yerine tabloyu sağa doğru genişletme yapıldı
    */
    #quotes_info div#line-items-card:first-child {
        width: 1020px;
    }
}
