.prva {
  height: 2520px !important;
}

#prvabgg {
  height: 1920px !important;

}

.logot {
  width: 200px;
}

/* Adjust text and buttons for readability */
h1.display-4 {
  font-size: 2.5rem;
  /* Adjust heading size */
}

.btn-lg {
  padding: 1rem 2rem;
  /* Make buttons large and touch-friendly */
  font-size: 1.5rem;
}

.dugme {
  background-color: rgb(68, 218, 255);
  color: #ffffff;
  transition: background-color 0.3s ease;
  border: none;
  /* Uklanja default ivicu dugmeta */
  text-align: center;
  width: 100%;
  /* Dodano radi prilagodbe širine */
}

.dugme:hover {
  background-color: rgb(0, 150, 200);
  /* Promjena nijanse pri hover-u za efekat */
  color: white;
}

.rounded-0 {
  border-radius: 0;
  /* Uklanja zaobljenje ivica */
}

button .dugme a {
  color: inherit;
  /* Koristi boju dugmeta za link */
  text-decoration: none;
  /* Uklanja podvlačenje linka */
  display: inline-block;
  /* Ponašanje kao inline element */
  width: 100%;
  /* Prilagođava širinu linka */
}


.breadcrumb-item+.breadcrumb-item:before {
  content: "";
  font-family: Feather;
  color: #000;
}

.alphabet-item {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: rgb(68, 218, 255);
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin: 0 5px;
}

.alphabet-item:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}

.store-item {
  display: block;
  /* Prikaži sve radnje po defaultu */
  opacity: 1;
  /* Zadana vidljivost */
  transition: opacity 0.3s ease;
}


.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 60px;
  background-color: rgb(68, 218, 255);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.back-button:hover {
  background-color: rgb(48, 198, 235);
}

.zastaviceT {
  width: 60px;
  height: 40px;
}

#fullscreen-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

#fullscreen-popup img {
  max-width: 90%;
  max-height: 90%;
}

/* Prikaz kada je aktivan */
#fullscreen-popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

/* Blokira interakcije kada je popup aktivan */
.no-interaction {
  pointer-events: none;
  /* Onemogućava klikove svuda */
}