/* Header logo: zameni tekst "elevano.rs" slikom */
header .flex .text-2xl.font-bold.text-blue-600 {
  display: inline-block;

  /* sakrij tekst, ali zadrži element */
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;

  /* ✅ ispravna putanja + sve u jednoj liniji */
  background: url("/assets/elevano-logo-email.png") left center / contain no-repeat;

  /* dimenzije da se vidi odmah */
  height: 50px;
  min-width: 190px;   /* da element ne bude 0px širine */
  width: auto;
}
/* Drugi logo: zamenjuje tekst "elevano.rs" u svetloplavoj verziji */
.text-2xl.font-bold.text-blue-400.mb-4 {
  display: inline-block;

  /* Sakrij tekst ali zadrži prostor */
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;

  /* ✅ Pozadina sa logom */
  background: url("/assets/Elevano2-02.png") left center / contain no-repeat;

  /* Dimenzije i proporcije */
  height: 50px;
  min-width: 200px;
  width: auto;
}
.mt-16 {
    margin-top: calc(var(--spacing) * 16);
    display: none;
}
/* Sakrij sekciju sa Proizvodi i Podrška u footeru */
footer .grid > div:nth-child(2),
footer .grid > div:nth-child(3) {
  display: none !important;
}