/* ---------- upravený tabstyle.css (přepiš původní část s obrázky) ---------- */

/* sloupce: zmenšil jsem šířku sloupce s obrázkem tak, aby se vešel menší náhled */
.tab-ceny th:nth-child(1),
.tab-ceny td:nth-child(1) { width: 140px; } /* místo 200px */
.tab-ceny th:nth-child(2),
.tab-ceny td:nth-child(2) { width: 110px; }

/* malé náhledy aut - silnější selektor a důsledné přepsání */
.tab-ceny td a img.car-img,
.tab-ceny td img.car-img,
.table-wrap img.car-img {
  width: 120px !important;      /* šířka náhledu */
  height: 72px !important;      /* výška náhledu */
  max-width: none !important;   /* přepište pravidla jako 'max-width:100%' */
  object-fit: cover !important; /* ořízne a nesmí deformovat */
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* pokud máš obrázky uvnitř figure.img-polaroid, přepiš i to:
   (někde jsi dříve používal .thumb5 .img-polaroid img) */
.thumb5 .img-polaroid img.car-img,
.img-polaroid img.car-img {
  width: 120px !important;
  height: 72px !important;
  object-fit: cover !important;
}

/* Mobil: ještě menší náhledy, zachovat horizontální scroll */
@media (max-width: 767px) {
  .tab-ceny { min-width: 800px; } /* zachovat scroll na menších obrazovkách */
  .tab-ceny th:nth-child(1), .tab-ceny td:nth-child(1) { width: 110px; }
  .tab-ceny th:nth-child(2), .tab-ceny td:nth-child(2) { width: 90px; }

  .tab-ceny td a img.car-img,
  .tab-ceny td img.car-img {
    width: 90px !important;
    height: 54px !important;
  }

  .tab-ceny th,
  .tab-ceny td {
    padding: 8px 10px;
    font-size: 15px;
  }
}

/* Klikací hlavička Objednat */
.order-link-header {
  display: block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.order-link-header:hover {
  background: #333;
}


/* Obrázek auta */
.order-link img.car-img {
  width: 120px !important;
  height: 72px !important;
  object-fit: cover !important;
  display: block;
  margin: 0 auto 6px;
  border-radius: 4px;
}

/* Responsivní úpravy */
@media (max-width: 767px) {
  .tab-ceny { min-width: 800px; }
  .tab-ceny th:nth-child(1), .tab-ceny td:nth-child(1) { width: 110px; }

  .order-link img.car-img {
    width: 90px !important;
    height: 54px !important;
  }
}
