.ZadetkiIskanjaDIV {
  display: flex;
  align-items: flex-start;
  /*min-height: 200px;*/
}

.ZadetkiIskanjaDIV:only-child {
  align-items: center;
  justify-content: center;
}

.ZadetkiIskanjaDIV.LeftFacets {
  flex-direction: row !important;
}

.ZadetkiIskanjaDIV.RightFacets {
  flex-direction: row-reverse !important;
}

.Facets {
  flex: 0 0 200px;
  border: 1px solid transparent;
  padding: 15px;
  margin-left: 6px;
}

.Facets.FacetsActive {
  border-color: silver;
}

.Facet {
  margin-bottom: 15px;
}

.Facet label {
  display: flex;
  align-items: flex-start;
  margin: 5px 0;
  cursor: pointer;
  gap: 5px;
}

.Facet input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
}

.Facet a {
  color: #007bff;
  text-decoration: none;
}

.facet-reset-link {
  margin-bottom: 20px;
}

.ResultsContainer {
  flex: 1;
  min-width: 0;
}

.ZadetkiIskanja {
  width: 100%;
}

.Iskanje .btn, .IskanjeEnostavno .btn {
  margin-right: 5px;
}

.btn, .btnIsci {
	height: 22px;
	color: white;
	background: #006385;
  border: none;
  cursor: pointer;
  padding: 3px 10px;
}

.search-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.search-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #006385;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.search-loading-text {
  color: #4c4c4c;;
  font-size: 14px;
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}