/* UL HOLDER – odstranění pozadí, mezery mezi taby */
ul.shp-tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent !important;
  border: none !important;
}

/* LI jednotlivé záložky */
ul.shp-tabs li.shp-tab {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 5px;
  height: 36px;
  flex: 1;
  min-width: 100px;
  max-width: 160px;
  font-family: "new_font", sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1f2a;
  transition: all 0.2s ease;
  margin-right: 4px;
}

/* Poslední bez mezery */
ul.shp-tabs li.shp-tab:last-child {
  margin-right: 0;
}

/* HOVER efekt */
ul.shp-tabs li.shp-tab:hover {
  background: #f2f6fc;
  border-color: #0072c6;
  color: #0072c6;
}

/* AKTIVNÍ záložka */
ul.shp-tabs li.shp-tab.active {
  background: #fff;
  border: 1px solid #0072c6;
  box-shadow: 0 0 0 1px #0072c6 inset;
  color: #0072c6;
  font-weight: 500;
}

/* ODKAZ uvnitř záložky */
ul.shp-tabs li.shp-tab a.shp-tab-link {
  all: unset;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
}

/* Vyčištění pozadí */
.shp-tabs-holder,
.shp-tabs {
  border-color: transparent;
  background-color: transparent;
}

/* RESPONSIVITA pro menší obrazovky */
@media (max-width: 768px) {
  ul.shp-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  ul.shp-tabs li.shp-tab {
    flex: 0 0 auto;
  }
}