/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --ljubicasta-color: #434592;
  --first-color: #ffba0a;
  --title-color: hsl(233, 81%, 4%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: #f5f7ff;
  --container-color: #f0f2ff;
  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --h2-font-sisection-below-dividere: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}
.messageDiv {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  color: white; /* White text color */
  padding: 20px; /* Padding around the message */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Shadow for a raised effect */
  opacity: 0; /* Start with opacity 0 */
  transition: opacity 1s ease-in-out; /* Smooth transition for opacity */
  z-index: 9999; /* Ensure it appears above other elements */
  text-align: center; /* Center the text */
  display: none; /* Initially hidden */
}
.fullscreen-layout {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen-image {
  margin-bottom: 5%;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
  .vrtici-list {
    display: none;
    width: 100%; /* Make the list take the full width of the form */
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}
.prvi{
  font-weight: normal;
  margin-inline: auto;
  width: 80vw;
}
#treca{
  display: none;
}
.pop-meni {
  padding-top: 35px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5%;
  margin-top: 5%;
  margin-left: 37.5%;
  background-color: var(--body-color);
  color: black;
  border-radius: 10px;
  width: 25%;
  height: 60%;
  display: flex;
  max-width: 600px;
  flex-direction: column; 
  align-items: center;
  gap: 10%;
}

.logo_ico{
  margin-bottom: 20px;
  max-width: 70px;
  max-height: 50px;
}
body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mar-top{
  margin-top: 10%;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1520px;
  margin-inline: 1.5rem;
}
.hidden{
  display: none;
}
.main {
  position: relative;
  height: 100vh;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}


/*Ovo je kao za opstine*/
.opstine-list {
    position: absolute; /* Ensure the list is positioned absolutely */
    z-index: 1000; /* Adjust as needed to ensure it's above other elements */
    background-color: white; /* Ensure the background is solid to cover other content */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add a shadow for better visibility */
    border: 1px solid #ddd; /* Optional: add a border */
    list-style: none; /* Remove default list styling */
    padding: 10px; /* Add some padding */
    display: none; /* Initially hide the list */
}

.search,
.login,
.direktor-pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  background-color: hsla(230, 75%, 15%, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* For safari */
  padding: 8rem 1.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.direktor-div{
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  border-radius: 1rem;
  row-gap: 1.25rem;
  text-align: center;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.hor-dir-pop {
  width: 90%;
  height: 20%;
  display: flex; /* Display items horizontally */
}

/* Adjust spacing between items if needed */
.hor-dir-pop > * {
  margin-right: 10px; /* Adjust as needed */
}
.logout{
  margin-top: 1.5%;
  margin-right: 15%;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
}

.logout:hover{
  scale: 0.95;
  transition: 0.2s ease;
}

.logout:active{
  scale: 1.05;
  transition: 0.2s ease;
}

.direktor-ime-pop{
  margin-top: 4%;
  font-size: 1rem;
  font-weight: bold;
  color: black;
  text-align: left;
}
.direktor-mail-pop,
.direktor-telefon-pop{
  font-size: 0.8rem;
  color: black;
  text-align: left;
}


.login__close,
.search__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: var(--z-fixed);
}
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav__subtitle {
  color: var(--text-color);
  font-size: 0.75rem; /* Adjust the size as needed */
}
.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
  font-size: x-large;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__search, 
.nav__login, 
.nav__toggle, 
.nav__close {
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .4s;
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}


/* Navigation for mobile devices */
.vrtic-item:hover {
  color: var(--first-color);
}

.imeADR{
  margin-top: 20px;
  margin-bottom: 10px;
}




.messageBubble.show {
  visibility: visible;
  opacity: 1;
}

.messageBubble .msgLOG {
  width: 30px;
  height: 30px;
}

.messageBubble p {
  margin: 0;
  font-size: 16px;
}

.blogLINK{
  color: var(--first-color);
  font-weight: bold;
  font-size: 2rem;
}
.blogLINK:hover{
  opacity: 0.8;
}
.prvi,
.car-p{
  text-align: justify;
}
@media screen and (max-width: 1023px) {
  .nav__link{
    font-size: 1.5rem;
    font-family: inherit;
    font-weight: bold;
  }
  .login__form{
    top: 5%;
  }
  .prijava:hover{
    background-color: var(--first-color);
    color: white;
    transition: 0.4s;
  }
  .blogLINK{
    font-size: 1rem;
  }
  #telefoncic{
    margin-top: 6%;
    margin-inline: auto;
    font-size: 0.7rem;
  }
  .nav{
    width: 90%;
  }
  #settings-close,
  #location-close {
    position: fixed;
    font-size: 2rem;
    top: 5;
    /* Additional styles for demonstration */
    border: none;
    cursor: pointer;
  }
  .messageBubble {
    position: fixed;
    top: 80px;
    left: 20%;
    margin-inline: auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    visibility: hidden; /* Initially hidden */
    transition: visibility 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .hor-bottom h2{
    font-size: 20rem;
    width: 40vw;
  }
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, 0.753);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top .4s;
  }
  .landing {
    position: relative;
    margin-top: 27%; /* Adjust top margin as needed */
    margin-left: 2%; /* Adjust left margin as needed */
    text-align: left; /* Center align text */
}

.glavni {
  text-align: center;
  margin-bottom: 2%;
  position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}


.lokacija {
  width: 85px;
  height: auto;
}

#prva{
  display: none;
}

#treca{
  display: block;
}

.pod {
  text-align: center;
    justify-content: right;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 45vw;
    font-size: 1rem;
    color: #505050;
}

.prijava {
  border: 2px solid var(--first-color);
  border-radius: 20px;
  padding: 9px;
    margin-top: 51px;
    font-size: 0.5rem;
    color: black;
    font-weight: bold;
}

.hor-lan {
    display: flex; /* Use flexbox layout */
    justify-content: flex-start; /* Align items to the start horizontally */
    margin-bottom: 100px;
}


.hor-lan-img {
  z-index: -1;
  position: absolute;
  left: 50%;
    top: 145px;
    width: 50%;
    height: auto;
}

.features {
  width: 90vw;
  position: absolute;
  left: 50;
  top: 115%;
  display: flex; /* Use flexbox layout */
  justify-content: space-between; /* Align items to the start horizontally */
  flex-wrap: wrap; /* Allow items to wrap to the next line if necessary */
  gap: 0.6rem; /* Add gap between items for better spacing */
}

.feature-text {
  font-size: 0.7rem; /* Adjust font-size using viewport width for responsiveness */
  color: #333;
}

.feature-item {
  min-width: 85px;
  height: auto;
  width: 25vw;
  border-radius: 10px;
  background-color: #f0f0f0;
  color: black;
  height: 3rem;
  display: flex;
  align-items: center; /* Center align content vertically */
  padding: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem; /* Adjust font size for better readability */
}

.feature-content img {
  width: 5vw;
  height: auto;
}


  .cssbuttons-io-button {
    margin-top: 3%;
    background: var(--first-color);
    color: white;
    font-family: inherit;
    padding: 1px;
    padding-left: 1.2em;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--first-color);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    width: 47%;
  }
  
  .cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--first-color);
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--title-color);
  }
  
  .cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button:active .icon {
    transform: scale(0.95);
  }

  .cssbuttons-io-button2 {
    margin-top: 2%;
    background: var(--first-color);
    color: white;
    font-family: inherit;
    padding: 3px;
    padding-left: 1.2em;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--first-color);
    overflow: hidden;
    position: relative;
    padding-right: 3.3em;
    height: 50px;
    cursor: pointer;
  }
  
  .cssbuttons-io-button2 .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2rem;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--first-color);
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .cssbuttons-io-button2:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button2 .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--title-color);
  }
  
  .cssbuttons-io-button2:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button2:active .icon {
    transform: scale(0.95);
  }


  .section-below-divider {
    margin-bottom: 10%;
    position: relative;
    background-color: var(--ljubicasta-color);
     /* Add some padding for spacing */
    color: white; /* Ensure the text color contrasts with the background */
    font-weight: bold;
  }
  
  .section-below-divider h1{
    height: 5vh;
    margin-top: 5%;
    color: white;
    font-size: 2rem;
    display: grid;
    place-items: center;
  }
  .custom-shape-divider-bottom-1718820657 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }
  .carouselHOME {
    padding-top: 10px;
    position: relative;
    width: 98vw; /* Full viewport width */
    height: 100vw; /* Full viewport height */
    overflow: hidden;
    min-height: 400px;
}

.carousel__track-container {
  justify-content: center;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden;
}

.carousel__track {
  
    display: flex;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    transition: transform 0.5s ease;
}

.carousel__slide {
  justify-content: center;
    flex: 0 0 98vw; /* Each slide takes 80% of the viewport width */
    padding: 0; /* Remove padding */
    box-sizing: border-box;
}

.carousel__content {
  margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 80vw;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 70px; /* Add padding to create space around content */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.car-p {
    font-weight: normal;
    font-size: 1rem; /* Adjust font size as needed */
    line-height: 1.4; /* Increase line height for better readability */
    margin: 10px 0; /* Adjust margins for spacing */
}

.carousel__content img {
    width: 60%; /* Adjust image width */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px; /* Add margin top for separation */
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1;
    color: white;
}

.carousel__button--left {
    left: 10px; /* Adjust position from left */
}

.carousel__button--right {
    right: 10px; /* Adjust position from right */
}

.carousel__nav {
  width: 20vw;
    position: relative;
    bottom: 10px; /* Adjust position from bottom */
    left: 50%; /* Center align horizontally */
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 1;
}

.carousel__indicator {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    cursor: pointer;
}

.carousel__indicator.active {
    background-color: gray;
}

.marquee-container {
  margin-top: 1%;
  overflow: hidden;
  width: 100%;
  height: 110px; /* Adjust height as needed */
  position: relative;
}

.marquee-content, .marquee-content2 {
  display: flex;
  width: fit-content; /* Ensure content width is based on items */
}

.marquee-item {
  width: 5vw;
  margin-left: 10px;
  min-width: 230px; /* Adjust width as needed */
  padding: 10px;
  padding-right: 20px;
  border-radius: 15px;
  border: 1px solid #ddd; /* Optional border for visibility */
  background-color: #f9f9f9; /* Optional background color */
  height: 100px;
}

.marquee-content:hover,
.marquee-content2:hover {
  animation-play-state: paused; /* Pause animation on hover */
}


@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee2 {
  100% {
    transform: translateX(0);
  }
  0% {
    transform: translateX(-50%);
  }
}

  .kraj {
    padding-bottom: 8rem;
    margin-top: 15%;
    text-align: center; /* Center aligns the h1 */
  }
  
  .kraj h1 {
    color: #000;
    font-size: 2rem; /* Adjust as needed */
    margin-bottom: 1rem; /* Adds space below the h1 */
  }

  .kraj-hor {
    display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Aligns items vertically */
  }
  
  .contact-form {
    margin-left: auto; /* Adjust margin as needed */
    margin-right: auto; /* Adjust margin as needed */
    width: 80%; /* Adjust width as needed */
    padding: 20px;
  }
  
  .contact-form label {
    justify-content: le;
    color: black;
  }
  
  .contact-form .heading {
    font-size: 24px;
    color: black;
    margin-bottom: 12px;
    font-weight: bold;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    justify-content: left;
    margin-bottom: 10px;
  }
  
  textarea {
    justify-content: left;
    resize: none;
    height: 80px;
    width: 100%; /* Adjust width as needed */
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%; /* Adjust width as needed */
    padding: 10px;
    border: 1px solid #ccc; /* Optional border */
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box; /* Ensures padding and border are included in width */
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 5px var(--first-color);
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
  }
  
  .contact-form button[type="submit"] {
    background-color: var(--first-color); /* Adjust to your color variable */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .contact-form button[type="submit"]:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

  .pretraga{
    padding-right: 2rem;
    position: relative;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack items vertically */
  }
  
  .forma-pret {
    margin-left: 15px;
    --input-bg: #FFF; /* Background color of input */
    --padding: 1.5em; /* Padding inside the input */
    --rotate: 80deg; /* Rotation degree of input */
    --gap: 2em; /* Gap between items in input */
    --icon-change-color: var(--first-color); /* Color of icon when rotating */
    --height: 40px; /* Height of input */
    width: 65%; /* Width of form */
    padding-inline-end: 1em; /* Padding at the end of input */
    background: var(--input-bg);
    position: absolute;
    border-radius: 4px;
    /* Centering the form */
  }
  
  .forma-pret label {
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--height);
  }
  
  .forma-pret input {
    width: 100%;
    padding-inline-start: calc(var(--padding) + var(--gap));
    outline: none;
    background: none;
    border: 0;
  }
  /* style for both icons -- search,close */
  .forma-pret svg {
    /* display: block; */
    color: #111;
    transition: 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    height: 15px;
  }
  /* search icon */
  .icon {
    position: absolute;
    left: var(--padding);
    transition: 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* arrow-icon*/
  .swap-off {
    transform: rotate(-80deg);
    opacity: 0;
    visibility: hidden;
  }
  /* close button */
  .close-btn {
    /* removing default bg of button */
    background: none;
    border: none;
    right: calc(var(--padding) - var(--gap));
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 0.1em;
    width: 20px;
    height: 20px;
    border-radius: 60%;
    transition: 0.3s;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
  }
  
  .forma-pret input:focus ~ .icon {
    transform: rotate(var(--rotate)) scale(1.3);
  }
  
  .forma-pret input:focus ~ .icon .swap-off {
    opacity: 1;
    transform: rotate(-80deg);
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret input:focus ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret input:valid ~ .icon {
    transform: scale(1.3) rotate(var(--rotate))
  }
  
  .forma-pret input:valid ~ .icon .swap-off {
    opacity: 1;
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret input:valid ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret input:valid ~ .close-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0s;
  }
  
  .forma-pret2 {
    margin-top: 3%;
    margin-left: 50%;
    --input-bg: var(--body-color); /* Background color of input */
    --padding: 1.5em; /* Padding inside the input */
    --rotate: 80deg; /* Rotation degree of input */
    --gap: 2em; /* Gap between items in input */
    --icon-change-color: var(--first-color); /* Color of icon when rotating */
    --height: 40px; /* Height of input */
    width: 40%; /* Width of form */
    padding-inline-end: 1em; /* Padding at the end of input */
    background: var(--input-bg);
    position: absolute;
    border-radius: 4px;
    
    /* Centering the form */
  }
  
  .forma-pret2 label {
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--height);
  }
  
  .forma-pret2 input {
    width: 100%;
    padding-inline-start: calc(var(--padding) + var(--gap));
    outline: none;
    background: none;
    border: 0;
  }
  /* style for both icons -- search,close */
  .forma-pret2 svg {
    /* display: block; */
    color: #111;
    transition: 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    height: 15px;
  }
  /* search icon */
  .icon2 {
    position: relative;
    transition: 0.3s cubic-bezier(.4,0,.2,1);
  }
  /* arrow-icon*/
  .swap-off {
    transform: rotate(-80deg);
    opacity: 0;
    visibility: hidden;
  }
  /* close button */
  .close-btn2 {
    /* removing default bg of button */
    background: none;
    border: none;
    right: calc(var(--padding) - var(--gap)); /* Adjust this value */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 0.1em;
    width: 20px;
    height: 20px;
    border-radius: 60%;
    transition: 0.3s;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
  }
  
  .forma-pret2 input:focus ~ .icon {
    transform: rotate(var(--rotate)) scale(1.3);
  }
  
  .forma-pret2 input:focus ~ .icon .swap-off {
    opacity: 1;
    transform: rotate(-80deg);
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret2 input:focus ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret2 input:valid ~ .icon {
    transform: scale(1.3) rotate(var(--rotate))
  }
  
  .forma-pret2 input:valid ~ .icon .swap-off {
    opacity: 1;
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret2 input:valid ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret2 input:valid ~ .close-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0s;
  }
  
  
  .setting-btn {
    position: absolute;
    margin-left: 90%;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--first-color);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    box-shadow: 0px 0px 0px 2px var(--body-color);
  }
  .bar {
    width: 50%;
    height: 2px;
    background-color: var(--body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 2px;
  }
  .bar::before {
    content: "";
    width: 2px;
    height: 2px;
    background-color: var(--first-color);
    position: absolute;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.3s;
    box-shadow: 0px 0px 5px white;
  }
  .bar1::before {
    transform: translateX(-4px);
  }
  .bar2::before {
    transform: translateX(4px);
  }
  .setting-btn:hover .bar1::before {
    transform: translateX(4px);
  }
  .setting-btn:hover .bar2::before {
    transform: translateX(-4px);
  }

  .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: fixed; /* Use fixed positioning */
    top: 55%; /* Align the top of the element at 50% of the viewport height */
    left: 50%; /* Align the left side of the element at 50% of the viewport width */
    transform: translate(-50%, -50%); /* Center the element perfectly */
  }
  
  .form label{
    margin-top: 5%;
  }
  
  .title {
    font-size: 28px;
    color: var(--first-color);
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .title::before,.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: var(--first-color);
  }
  
  .title::before {
    width: 18px;
    height: 18px;
    background-color: var(--first-color);
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .message, .signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a {
    color: var(--first-color);
  }
  
  .signin a:hover {
    text-decoration: underline var(--first-color);
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }
  
  .submit {
    margin-top: 8%;
    border: none;
    outline: none;
    background-color: var(--first-color);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
  }
  
  .submit:hover {
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }


  .telo-direktor{
    background-color: white;
    position: relative;
    padding-bottom: 5%;
    margin-bottom: 30px;
    margin-left: 5%;
    width: 90%;
    min-height: 70vh;
    height: fit-content;
    margin-top: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  .hor-dir{
    width: 100%;
    gap: 10px;
    position: relative;
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically (optional) */
  }
  
  .hor-dir-img{
    border-radius: 50%;
    margin-left: 3%;
    margin-top: 5%;
    width: 15%;
  }
  .hor-dir-img:hover{
    opacity: 0.8;
    scale: 0.95;
  }
  
  .hor-dir div{
    width: 90%;
    margin-left: 1%;
    margin-top: 3%;
  }
  
  .direktor-ime{
   width: 100px;
   font-size: 1rem;
   font-weight: bold;
   color: #000; 
  }
  
  .direktor-mail{
    font-size: small;
    color: #282828; 
  }
  
  .direktor-telefon{
    font-size: small;
    color: #282828; 
  }
  
  .direktor-vrtici {
    padding: 2%;
    position: relative;
    margin-top: 5%;
    margin-left: 5%;
    margin-bottom: 15%;
    width: 90%;
    min-height: 65vh;
    background-color: var(--body-color);
    border-radius: 10px;
    border: 1px solid #333; /* Set border to black and 20px thick */
  }
  
  .direktor-vrtici ul {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    gap: 0.5rem; /* Adjust the gap between items */
    list-style-type: none; /* Remove default list styles */
  }
  
  .vrtic-direktor-vrtici{
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    display: flex; /* Enable flexbox layout */
    align-items: center; /* Center items vertically */
  }
  
  .vrtic-direktor-vrtici img{
    margin-left: 1%;
    width: 15%;
    height: auto;
    border-radius: 50%;
    padding: 1px;
    border: 1px solid black;
    object-fit: cover; /* Ensure the image scales and crops correctly */
  }
  
  .vrtic-direktor-vrtici:hover{
    box-shadow: 0 4px 24px #cacaca;
  }
  
  .info-vrt{
    margin-left: 2%;
  }
  
  .ime-vrtica{
    color: black;
    font-size: 20px;
    font-weight: bold;
  }
  
  .progress-loader {
    margin-left: auto;
    margin-top: 7%;
    width: 100%;
    background: var(--body-color);
    height: 10px;
    border-radius: 7px;
  }
  
  .progress-loader2 {
    position: relative;
    width: 100%;
    background: var(--body-color);
    height: 10px;
    border-radius: 7px;
  }
  
  .progress {
    width: 1px;
    height: 10px;
    border-radius: 7px;
    background: var(--first-color);
    transition: 0.5s;
   /* animation: loading_44 5s cubic-bezier(.4,1.01,1,1) infinite;*/
  }
  
  @keyframes loading_44 {
    0% {
      width: 0%;
    }
  
    50% {
      width: 100%;
    }
  
    100% {
      width: 0%;
    }
  }
  
  .popunjenost{
    position: relative;
    margin-left: auto;
    margin-right: 10px;
  }
  
  .popunjenost p{
    width: 100px;
    font-weight: bold;
    font-size: 0.7rem;
    color: #000;
  }
  
  .adresa{
    width: 10rem;
    font-size: 0.8rem;
    color: #333;
  }

  .coolinput5 {
    display: flex;
    flex-direction: column;
    width: 80%;
    position: static;
    max-width: 3240px;
  }
  
  .coolinput5 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
  }
  
  .coolinput5 input[type=text].input {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
  }
  
  .coolinput5 input[type=text].input:focus {
    outline: none;
  }


  .coolinput {
    display: flex;
    flex-direction: column;
    width: 2000px;
    position: static;
    max-width: 3240px;
  }
  
  .coolinput label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
  }
  
  .coolinput input[type=text].input {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
  }
  
  .coolinput input[type=text].input:focus {
    outline: none;
  }
  .coolinput2 {
    display: flex;
    flex-direction: column;
    width: 100%; /* Adjust as needed */
    max-width: 3240px;
    position: static;
}

.coolinput2 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
}

.coolinput2 textarea.input {
  font-family: inherit;
    padding: 11px 10px;
    font-size: 1rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
    height: 150px;
    resize: none; /* Prevent resizing by the user */
    overflow: auto; /* Ensure scrollbars appear if content overflows */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}


  .coolinput3 {
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    width: 90%;
    position: static;
    max-width: 3240px;
  }
  
  .coolinput3 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
  }
  
  .coolinput3 input[type=text].input {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
  }
  
  .coolinput3 input[type=text].input:focus {
    outline: none;
  }
  .coolinput4 { 
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    width: 90%;
    position: static;
    max-width: 3240px;
    align-items: flex-start; /* Align items to the start of the container */
}

.coolinput4 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    margin: 0; /* Remove margin to ensure alignment */
    padding: 0 3px;
    background: white;
    width: 100%; /* Make label take the full width of the container */
    box-sizing: border-box; /* Ensure padding is included in width */
    word-wrap: break-word; /* Allow text to wrap within the container */
}

.coolinput4 textarea.input, /* Use a textarea element for multi-line input */
.coolinput4 input[type=text].input {
  font-family: inherit;
    padding: 11px 10px;
    font-size: 0.8rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
    height: 110px;
    width: 100%; /* Make input box take the full width of the container */
    box-sizing: border-box; /* Ensure padding is included in width */
    margin-top: 0; /* Ensure no extra space above the input */
    line-height: normal; /* Set line height to normal */
    text-align: left; /* Align text to the left */
    overflow: auto; /* Enable scrolling for overflow content */
    white-space: pre-wrap; /* Preserve whitespace and wrap text */
    word-wrap: break-word; /* Allow words to break */
    display: block; /* Ensure it behaves like a block element */
}

.coolinput4 textarea.input:focus,
.coolinput4 input[type=text].input:focus {
    outline: none; /* Remove the default outline on focus */
}
  .hor-edit{
    position: relative;
    margin-top: 5%;
    margin-left: 5%;
    width: 90%;
    position: relative;
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically (optional) */
  }
  
  .hor-edit img{
    margin-top: 1%;
    margin-right: 5%;
    width: 10%;
    height: 10%;
  }
  
  .konta {
    margin-top: 0.8rem;
    margin-left: 15px;
    height: 31px;
    position: relative;
  }
  
  /* Hide default HTML checkbox */
  .checkbox {
    opacity: 0;
    width: 2rem;
    height: 0;
    position: absolute;
  }
  
  .switch {
    width: 55px;
    height: 100%;
    display: block;
    background-color: #e9e9eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease-out;
  }
  
  /* The slider */
  .slider {
    width: 27px;
    height: 27px;
    position: absolute;
    left: calc(50% - 27px/2 - 10px);
    top: calc(50% - 27px/2);
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
  
  .checkbox:checked + .switch {
    background-color: #34C759;
  }
  
  .checkbox:checked + .switch .slider {
    left: calc(50% - 27px/2 + 10px);
    top: calc(50% - 27px/2);
  }
  
  .telo-edit {
    padding-top: 35px;
    padding-bottom: 55px;
    position: relative;
    margin-bottom: 30px;
    margin-left: 5%;
    width: 90%;
    height: fit-content;
    margin-top: 80px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  .telo-edit h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center; /* Center text horizontally */
  }

  .telo-edit-blog {
    padding-top: 35px;
    padding-bottom: 55px;
    position: relative;
    margin-bottom: 30px;
    margin-left: 5%;
    width: 90%;
    min-height: 85vh;
    height: fit-content;
    margin-top: 80px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  .telo-edit-blog h1 {
    width: 80%;
    margin-inline: auto;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center; /* Center text horizontally */
  }
.custum-file-upload {
    height: 0;
    padding-top: 40%; /* Further adjust the aspect ratio to make the container height smaller */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px dashed #cacaca;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.file_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container, cropping if necessary */
    border-radius: inherit; /* Match the border-radius of the parent */
    z-index: 1;
}

.custum-file-upload .text {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.custum-file-upload .text span {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(75, 85, 99, 1);
}

.custum-file-upload input {
    display: none;
}

.img-input {
    background-color: var(--body-color);
    margin: 5%;
    padding: 5px;
    position: relative;
    margin-top: 5%;
    border: 1px solid #505050;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

  .ceo-status {
    position: relative;
    margin-top: 5%;
    margin-left: 6%;
    padding: 0 10px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .status-hor {
    gap: 10px;
    display: flex;            /* Enable flexbox */
    justify-content: space-between;
    align-items: center;      /* Center items vertically (optional) */
  }
  
  .status-hor p {
    font-size: 20px;
    color: #000;
  }
  
  .status-hor span {
    font-size: 20px;
    color: #000;
  }
  
  .status {
    margin-top: 4%;
    display: flex; /* Ensure items align horizontally */
    align-items: flex-start; /* Align items at the start (top) */
    width: 100%;
    gap: 20px;
    flex-wrap: wrap; /* Allow items to wrap onto new lines if needed */
  }
  
  .status-levo {
    width: calc(100% - 70px); /* Adjust width to allow space for .status-desno */
    display: flex;
    flex-direction: column; /* Ensure items align vertically */
    gap: 15px; /* Adjust this value to set the gap between items */
  }
  
  .status-desno {
    width: 90%;
    display: flex; /* Enable flexbox */
    flex-direction: row; 
    gap: 1px; /* Adjust this value to set the gap between items inside .status-desno */
    margin-top: 2%;
  }
  
  .plus, .minus {
    margin-top: 2%;
    padding: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .plus, .minus { 
    width: 40px;
    height: 40px;
  }

  .status-hor p {
    font-size: 18px;
  }
  
  .plus {
    margin-left: auto;
    background-color: #3aa856;
  }
  
  .plus:hover {
    background-color: #34C759;
  }
  
  .plus:active {
    transform: scale(0.95);
  }
  
  .minus {
    margin-left: 1%;
    background-color: #ff3636;
  }
  
  .minus:hover {
    background-color: #ff1818;
  }
  
  .minus:active {
    transform: scale(0.95);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .status {
      flex-direction: column;
      gap: 10px;
    }
  
    .status-levo, .status-desno {
      width: 100%;
    }
  
    .status-levo {
      order: 1;
    }
  
    .status-desno {
      order: 2;
      justify-content: center;
    }
  }

  
  .cek-tekst {
    margin-top: 5%;
    margin-left: 5%;
    display: flex;
    width: 90%;
    gap: 5%;
    flex-direction: row;
    justify-content: space-between; /* Distributes space between items equally */
    align-items: center; /* Centers items horizontally */
    height: 5%; /* Makes the div fill the height of the viewport */
    box-sizing: border-box; /* Ensures padding is included in the height */
  }
  .cek-tekst2 {
    margin-top: 5%;
    margin-left: 5%;
    display: flex;
    width: 90%;
    gap: 5%;
    flex-direction: row;
    justify-content: space-between; /* Distributes space between items equally */
    align-items: center; /* Centers items horizontally */
    height: 5%; /* Makes the div fill the height of the viewport */
    box-sizing: border-box; /* Ensures padding is included in the height */
  }
  
  .cek-tekst p {
    width: 70rem;
    font-size: 1rem;
    color: #000;
  }
  
  .textInputWrapper {
    position: relative;
    width: 35%;
    margin: 12px 5px;
    --accent-color: var(--first-color);
  }
  
  .textInputWrapper:before {
    transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  }
  
  .textInputWrapper:before,
  .textInputWrapper:after {
    content: "";
    left: 0;
    right: 0;
    position: absolute;
    pointer-events: none;
    bottom: -1px;
    z-index: 4;
    width: 100%;
  }
  
  .textInputWrapper:focus-within:before {
    border-bottom: 1px solid var(--accent-color);
  }
  
  .textInputWrapper:before {
    transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  }
  
  .textInputWrapper:focus-within:before {
    border-bottom: 1px solid var(--accent-color);
    transform: scaleX(1);
  }
  
  .textInputWrapper:focus-within:after {
    border-bottom: 2px solid var(--accent-color);
    transform: scaleX(1);
  }
  
  .textInputWrapper:after {
    content: "";
    transform: scaleX(0);
    transition: transform 250ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    will-change: transform;
    border-bottom: 2px solid var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .textInput::placeholder {
    transition: opacity 250ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    opacity: 1;
    user-select: none;
    color: white;
  }
  
  .textInputWrapper .textInput {
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 2px 5px rgb(35 35 35 / 30%);
    max-height: 36px;
    background-color: #252525;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 200ms;
    transition-property: background-color;
    color: #e8e8e8;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 12px;
    width: 100%;
    border-left: none;
    border-bottom: none;
    border-right: none;
  }
  
  .textInputWrapper .textInput:focus,
  .textInputWrapper .textInput:active {
    outline: none;
  }
  
  .textInputWrapper:focus-within .textInput,
  .textInputWrapper .textInput:focus,
  .textInputWrapper .textInput:active {
    background-color: #353535;
  }
  
  .textInputWrapper:focus-within .textInput::placeholder {
    opacity: 0;
  }
  
  .kroz{
    color: #252525;
    margin-top: 4%;
    font-size: 2rem;
    font-weight: bold;
  }

  .custom-shape-divider-top-1718819328 {
    position: relative;
    margin-top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }
  
  .custom-shape-divider-top-1718819328 svg {
    position: relative;
    display: block;
    width: calc(159% + 1.3px);
    height: 3rem;
    
  }
  
  .custom-shape-divider-top-1718819328 .shape-fill {
    fill: var(--body-color);
  }

  .settings {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    background-color: hsla(230, 75%, 15%, .1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); /* For safari */
    padding: 8rem 1.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    display: flex;
    justify-content: center;
}

.pop-meni{
  position: absolute;
  min-height: 500px;
  top: 170px;
  padding-bottom: 10%;
  min-width: 310px;
}
  
  
  
  
  
  .drop-button {
    position: relative;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .button {
    background-color: var(--first-color);
    color: #212121;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    font-size: 13px;
    position: absolute;
    z-index: 1;
    min-width: 200px;
    background-color: #212121;
    border: 2px solid var(--first-color);
    border-radius: 0px 15px 15px 15px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }
  
  .dropdown-content a {
    color: var(--first-color);
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    transition: 0.1s;
  }
  
  .dropdown-content a:hover {
    background-color: var(--first-color);
    color: #212121;
  }
  
  .dropdown-content a:focus {
    background-color: #212121;
    color: var(--first-color);
  }
  
  .dropdown-content #top:hover {
    border-radius: 0px 13px 0px 0px;
  }
  
  .dropdown-content #bottom:hover {
    border-radius: 0px 0px 13px 13px;
  }
  
  .paste-button:hover button {
    border-radius: 15px 15px 0px 0px;
  }
  
  .paste-button:hover .dropdown-content {
    display: block;
  }
  
  
  
  .pop-meni h1 {
    text-align: center;
  }



  
  .show-modal {
    margin-top: 10%;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;
    font-size: 1.2rem;
    padding: 15px 22px;
    background: #4A98F7;
    transition: 0.3s ease;
    box-shadow: 0 10px 18px rgba(52,87,220,0.18);
}
.show-modal:hover {
    background: #2382f6;
}
.bottom-sheet {
    margin-top: 20%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;
    border-radius: 18px 18px 0 0;
    overflow: hidden; /* Prevent overflow of child elements */
}
.bottom-sheet.show {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #000;
}
.bottom-sheet .content {
    width: 100%;
    position: relative;
    background: #fff;
    max-height: 100vh;
    height: 50vh;
    max-width: 1150px;
    padding: 25px 30px;
    transform: translateY(100%);
    border-radius: 18px 18px 0 0; /* Ensure the content has matching rounded corners */
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}
.bottom-sheet.show .content {
    transform: translateY(0%);
}
.bottom-sheet.dragging .content {
  border-radius: 18px 18px 0 0;
    transition: none;
}
.bottom-sheet.fullscreen .content {
  border-radius: 18px 18px 0 0;
    overflow-y: hidden;
}
.bottom-sheet .header {
  border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: center;
}
.header .drag-icon {
  border-radius: 18px 18px 0 0;
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -15px;
}
.header .drag-icon span {
  border-radius: 18px 18px 0 0;
    margin-top: 10px;
    height: 0.9rem;
    width: 8.8rem;
    display: block;
    background: #C7D0E1;
    border-radius: 50px;
}
.bottom-sheet .body {
    height: 100%;
    overflow-y: auto;
    padding: 15px 0 25%;
    scrollbar-width: none;
}
.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}
.bottom-sheet .body h2 {
  margin-top: 1rem;
  margin-right: 1rem;
    font-size: 2rem;
}

.hor-items{
  right: 5%;
  min-width: 160px;
  width: 30%;
  position: absolute;
  display: flex; /* Use flexbox */
  align-items: center; /* Center items vertically (optional) */
}

.hor-items img{
  width: 50px;
}
.hor-bottom {
  width: 100%;
  position: relative;
  display: flex; /* Use flexbox */
  align-items: center; /* Center items vertically */
}

.hor-bottom img{
  width: 50px;
  height: auto;
}

.opis{
  margin-top: 30px;
  width: 90%;
  height: fit-content;
  font-size: 1.4rem;
  margin-bottom: 5%;
}

/* Carousel container */
.carousel {
  width: 100%;
  max-width: 600px;
  margin: 50px auto; /* Adjust margin to move the carousel lower */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* Inner container for the carousel */
.carousel-inner {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 10px; /* Add padding to create peek effect */
}

/* Each carousel item */
.carousel-item {
  flex: 0 0 80%; /* Adjust this percentage to control peek size */
  scroll-snap-align: start;
  position: relative;
  margin-right: 10px; /* Adjust this value to control spacing between items */
  border-radius: 10px;
  border: 2px solid black; /* Add black border around each image */
}

/* Carousel images */
/* Carousel images */
.carousel-item img {
  max-height: 300px;
  width: 100%;
  height: 100%; /* Ensures images maintain aspect ratio */
  display: block;
  border-radius: 10px;
  object-fit: cover; /* Ensures images cover the entire container */
}


.status-hor-bottom{
  width: 100%;
  font-size: 1.4rem;
  margin-top: 5%;
  color: black;
  display: flex;            /* Enable flexbox */
  justify-content: space-between;
  align-items: center;      /* Center items vertically (optional) */
}

.progress-loader-bottom{
  margin-top: 7%;
  position: relative;
  width: 100%;
  background: var(--body-color);
  height: 10px;
  border-radius: 7px;
}

.bot-status{
  margin-top: 10%;
}

.dalji-tekst{
  margin-top: 5%;
}
.status-hor-bottom img{
  width: 2rem;
  height: 2rem;
}

/* Example item styling */
.blog-item {
  margin-bottom: 5%;
  border: 0.18rem solid var(--title-color);
  border-radius: 14px;
}
.blog-item img{
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 40%;
}
.blog-item h1{
  margin-left: 5%;
  margin-top: 2%;
  color: black;
  font-size: 1rem;
  font-weight: bold;
}
.mesto-lokacija{
  margin-left: 3.5%;
  margin-top: 1%;
  color: grey;
  font-size: 0.8rem;
}
.opis-posta{
  padding-bottom: 0.5rem;
  margin-top: 2%;
  margin-left: 5%;
  width: 80%;
  color: grey;
  font-size: 0.8rem;
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Display ellipsis (...) for overflowing text */
  white-space: nowrap; /* Prevent text from wrapping to the next line */
}

.objavi{
  margin-bottom: 10%;
  margin-left: 10%;
  display: inline-block;
  background-color: var(--first-color);
  width: 80%;
  color: #fff;
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: box-shadow .4s;
}
.objavi:hover{
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
}
.objavi:active{
  scale: 0.95;
  transition: 0.3s;
}

.save-button {
  /* Add any other styles you need for the button here */
  margin-top: 10%;
  padding: 10px 20px;
  font-size: 1.3rem;
  color: #fff;
  background-color: var(--first-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.save-button:hover {
  background-color: hsl(43, 98%, 50%);
}

.save-button:active{
  scale: 0.9;
  transition: 0.3s ease;
}
.prijava{

  font-size: 0.7rem;
}

.blog-lista {
  width: 95%;
  margin-top: 5%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap; 
  gap: 1%;
  justify-content: flex-start;
  align-items: flex-start;
}

.blog-item {
  margin-inline: auto;
  width: 50%;
  min-width: 215px;
  height: 20%;
  border: 0.18rem solid var(--title-color);
  border-radius: 14px;
}
.blog-item img{
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 40%;
}
.blog-item h1{
  margin-left: 5%;
  margin-top: 2%;
  color: black;
  font-size: 1rem;
  font-weight: bold;
}
.mesto-lokacija{
  margin-left: 3.5%;
  margin-top: 1%;
  color: grey;
  font-size: 0.8rem;
}
.opis-posta{
  padding-bottom: 0.5rem;
  margin-top: 2%;
  margin-left: 5%;
  width: 80%;
  color: grey;
  font-size: 0.8rem;
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; 
  white-space: nowrap;
}
.logo_ico{
  margin-bottom: 5px;
  width: 55px;
}
.nav__subtitle{
  font-size: 0.7rem;
}

.new-carousel {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 300px; /* Set a fixed height for the carousel */
}

.new-carousel-indicators {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

.new-carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background-color: white;
  padding: 5px;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.new-carousel-indicators .active {
  background-color: black;
  border: 1px solid white;
  opacity: 1;
}

.new-carousel-inner {
  position: relative;
  width: 100%; /* Set width to 100% for responsiveness */
  height: 100%; /* Match the height of the parent container */
  display: flex;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.new-carousel-item {
  flex: 0 0 100%; /* Each item takes up 100% of the carousel width */
  height: 100%; /* Ensure height covers the container */
  position: relative;
}

.new-carousel-item img {
  width: 100%; /* Ensure image width covers the container */
  height: 100%; /* Ensure image height covers the container */
  object-fit: scale-down; /* Cover the container without stretching */
}

.telo-blog{
  max-width: 1300px;
  position: relative;
  margin-inline: auto;
  margin-bottom: 70px;
  width: 90%;
  min-height: 85vh;
  height: fit-content;
  margin-top: 80px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
}

.blog-tekst{
  padding: 30px;
}

.blog-tekst h1{
  width: 90%;
  font-size: 2rem;
  word-wrap: break-word; /* Ensures long words wrap to the next line */
  overflow-wrap: break-word; /* Ensures long words wrap to the next line */
}
.blog-tekst sub{
  width: 90%;
  font-size: 0.8rem;
  word-wrap: break-word; /* Ensures long words wrap to the next line */
  overflow-wrap: break-word; /* Ensures long words wrap to the next line */
}
.blog-tekst p{
  width: inherit;
  margin-top: 5%;
  font-size: 1.3rem;
  word-wrap: break-word; /* Ensures long words wrap to the next line */
  overflow-wrap: break-word; /* Ensures long words wrap to the next line */
}

@media screen and (min-width: 300px) {
  .gradoviTip:hover p{
    font-size: 0.7rem;
    position: fixed;
    margin-top: -70px;
    margin-left: -70%;
  }
  .location-pin {
    position: relative;
    width: 25px; /* Increased the size of the pin head */
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pin-head {
    top: 6px;
    width: 20px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pin-hole {
    width: 8px;
    height: 8px;
    background-color: var(--first-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .location-button:hover .pin-hole {
    background-color: var(--hover-color); /* Change pin hole color on hover */
  }
  
  .pin-base {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid white;
    position: absolute;
    top: 23px;
  }
  .location-button {
    left: 1%;
    top: -21px;
    width: 42px;
    height: 42px;
  }
  .backButton{
    width: 25px;
    height: 25px;
    position: absolute;
    left: 1%;
  }
  .bottom-sheet .body h2{
    font-size: 1.5rem;
  }
  .telo-edit-blog h1{
    font-size: 1.9rem;
  }
  .nav__logo{
    font-size: 1rem;
  }
  .status-hor-bottom p{
    font-size: 1.1rem;
  }
  .blog-item{
    min-width: 250px;
  }
  .hor-items{
    width: 30%;
    gap: 5%;
    margin-left: 0;
    min-width: 110px;
  }
  .hor-items img{
    margin-left: 15px;
    width: 22px;
    height: auto;
  }
  .opis{
    width: 100%;
    font-size: 1rem;
  }
  .vrtici-list {
    display: none;
    width:65.4%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 1.5vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 14.6%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .mar-top{
    margin-top: 70%;
  }
  .review-subtitle{
    font-size: 0.7rem;
  }
  .review-text{
    width: 100%;
    font-weight: bold;
    font-size: 0.8rem;
  }
  .marquee-item{
    height: 85px;
  }
  .adresa{
    width: 70px;
  }
  .login__close{
    margin-top: 15%;
  }
  .carousel__content img{
    width: 1500px;
  }
  .car-p{
    font-size: 0.8rem;
  }
  .info-vrt{
    width: 10px;
  }
  .ime-vrtica{
  font-size: 0.9rem;
  }
  .adresaP{
    font-size: 0.4rem;
  }
  .glavni{
    margin-top: 5%;
    font-size: 1.3rem;
  }
  .pod{
    font-size: 0.9rem;
    position: absolute;
    margin-top: 2vw;
    width: 90vw;
  }
  .features{
    position: absolute;
    top: 95vw;
  }
  .feature-content img{
    width: 7vw;
  }
  .feature-content{
    gap: 5px;
  }
  .feature-text{
    font-size: 0.6rem;
  }
  .feature-item{
    width: 20vw;
  }
  .cssbuttons-io-button{
    position: absolute;
    top: 40vw;
    width: 52%;
    font-size: 0.8rem;
  }
  .landing{
    height: 380px;
  }
  .hor-lan-img{
    width: 95%;
    left:2%;
    top: 90vw;
  }
  .prijava{
    position: absolute;
    right: 5px;
    font-size: 0.8rem;
    top: 27vw;
  }
}
@media screen and (min-width: 340px) {

  .location-button {
    left: 1%;
    top: -24px;
    width: 45px;
    height: 45px;
  }
  .backButton{
    width: 30px;
    height: 30px;
  }
  .nav__logo{
    font-size: 1.3rem;
  }
  .hor-bottom img{
    width: 25px;
  }
  .hor-items{
    gap: 20px;
  }
  .adresa{
    width: 70px;
  }
  .bottom-sheet .body h2{
    font-size: 1.7rem;
  }
  .vrtici-list {
    display: none;
    background-color: white;
    margin-top: 1.5vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 14.9%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .login__close{
    margin-top: 15%;
  }
  .carousel__content img{
    width: 1500px;
  }
  .car-p{
    font-size: 0.85rem;
  }
  .info-vrt{
    width: 10px;
  }
  .ime-vrtica{
  font-size: 0.9rem;
  }
  .adresaP{
    font-size: 0.4rem;
  }
  .features{
    position: absolute;
    top: 90vw;
  }
  .feature-content img{
    width: 7vw;
  }
  .feature-content{
    gap: 5px;
  }
  .feature-text{
    font-size: 0.6rem;
  }
  .feature-item{
    width: 20vw;
  }
  .cssbuttons-io-button{
    top: 155px;
    width: 56%;
    font-size: 0.8rem;
  }
  .prijava{
    top: 113px;
  }
  .hor-lan-img{
    top:330px;
    scale: 1.1;
  }
  .glavni{
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 370px) {
  .location-pin {
    position: relative;
    width: 28px; /* Increased the size of the pin head */
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pin-head {
    top: 5px;
    width: 26px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pin-hole {
    width: 10px;
    height: 10px;
    background-color: var(--first-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .location-button:hover .pin-hole {
    background-color: var(--hover-color); /* Change pin hole color on hover */
  }
  
  .pin-base {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid white;
    position: absolute;
    top: 22px;
  }
  .location-button {
    left: 1%;
    top: -24px;
    width: 50px;
    height: 50px;
  }
  .backButton{
    background-color: red;
  }
  .mar-top{
    margin-top: 110%;
    margin-bottom: 10%;
  }
  .vrtici-list {
    display: none;
    background-color: white;
    width: 65.4%;
    margin-top: 1.5vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 15.1%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .glavni{
    margin-top: 3%;
    font-size: 2.2rem;
  }
  .pod{
    font-size: 1.1rem;
    position: absolute;
    left: 2.5vw;
    margin-top: 5vw;
    width: 95vw;
  }
  .features{
    position: absolute;
    top: 95vw;
  }
  .feature-content img{
    width: 7vw;
  }
  .feature-content{
    gap: 5px;
  }
  .feature-text{
    font-size: 0.6rem;
  }
  .feature-item{
    width: 27vw;
  }
  .opis{
    font-size: 1.1rem;
  }
  .cssbuttons-io-button{
    position: absolute;
    left: 2vw;
    top: 51vw;
    width: 55%;
    font-size: 0.8rem;
  }
  .landing{
    margin-left: 0;
    height: 410px;
  }
  .prijava{
    position: absolute;
    top: 40vw;
    font-size: 0.8rem;
  }
  .hor-lan-img{
    top: 105vw;
  }
  .car-p{
    font-size: 0.9rem;
  }
  .hor-bottom img{
    width: 28px;
  }
}
@media screen and (min-width: 400px) {
  .location-pin {
    position: relative;
    width: 28px; /* Increased the size of the pin head */
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pin-head {
    top: 5px;
    width: 26px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pin-hole {
    width: 10px;
    height: 10px;
    background-color: var(--first-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  .pin-base {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid white;
    position: absolute;
    top: 22px;
  }
  
  .location-button:hover .pin-hole {
    background-color: var(--hover-color); /* Change pin hole color on hover */
  }

  .backButton{
    width: 40px;
    height: 40px;
  }
  .glavni{
    font-size: 2.5rem;
  }
  .nav__logo{
    font-size: 1.5rem;
  }
  .vrtici-list {
    display: none;
    background-color: white;
    margin-top: 1.5vw;
    width: 65.3%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 15.2%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .pod{
    font-size: 1.3rem;
  }
  .cssbuttons-io-button{
    top: 220px;
    font-size: 0.9rem;
    width: 58%;
  }
  .prijava{
    right: 1%;
    font-size: 0.9rem;
    top: 180px;
  }
  .features{
    position: absolute;
    top: 89vw;
  }
  .feature-content img{
    width: 7vw;
  }
  .feature-content{
    gap: 10px;
  }
  .feature-text{
    font-size: 0.7rem;
  }
  .feature-item{
    width: 27vw;
  }
  .mar-top{
    margin-top: 110%;
  }
  .hor-items{
    right: 25px;
  }
  .hor-bottom img{
    width: 30px;
  }
}
@media screen and (min-width: 425px) {
  .gradoviTip:hover p{
    position: fixed;
    margin-top: -70px;
    margin-left: -60%;
  }
  .location-button {
    left: 1%;
    top: -24px;
    width: 50px;
    height: 50px;
  }
  .cssbuttons-io-button{
    top: 50vw;
  }
  .status-hor-bottom p{
    font-size: 1.3rem;
  }
  .vrtici-list {
    display: none;
    width:65.4%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 1.5vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 15.2%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .prijava{
    top: 41vw;
  }
  .features{
    position: absolute;
    top: 85vw;
  }
  .feature-content img{
    width: 7vw;
  }
  .feature-content{
    gap: 10px;
  }
  .feature-text{
    font-size: 0.7rem;
  }
  .feature-item{
    width: 27vw;
  }
  .prvi{
    font-size: 1.1rem;
  }
  .hor-lan-img{
    scale: 1.1;
  }
}
@media screen and (min-width: 430px){
  
  .hor-items{
    gap: 22px;
  }
  .prijava{
    top: 41.5vw;
  }
  .vrtici-list {
    display: none;
    width: 65.4%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 1.5vw;
    padding: 10px;
    padding-top: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 15.4%;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .mar-top{
    margin-top: 115%;
  }
}
@media screen and (min-width: 450px) {
  .hor-lan-img{
    top: 450px;
  }
  .blog-item{
    min-width: 270px;
  }
  .prvi{
    font-size: 1.2rem;
  }
  .prijava{
    top: 185px;
    font-size: 1rem;
  }
  .cssbuttons-io-button{
    top: 220px;
    font-size: 1rem;
  }
  .features{
    position: absolute;
    top: 85vw;
  }
  .feature-content img{
    width: 7vw;
  }
  .feature-content{
    gap: 10px;
  }
  .feature-text{
    font-size: 0.7rem;
  }
  .feature-item{
    width: 27vw;
  }
  .hor-items{
    width: 33%;
    gap: 25px;
  }
  .hor-bottom img{
    width: 33px;
    height: auto;
  }
}
@media screen and (min-width: 480px) {
  .gradoviTip:hover p{
    position: fixed;
    margin-top: -70px;
    margin-left: -55%;
  }
  .glavni{
    font-size: 3rem;
  }
  .hor-lan-img{
    margin-top: 10%;
  }
  .cssbuttons-io-button{
    top: 250px;
  }
  .prijava{
    font-size: 1.1rem;
    top: 214px;
  }
}
@media screen and (min-width: 510px) {
  .opis{
    font-size: 1.3rem;
  }
  .prvi{
    font-size: 1.3rem;
  }
  .vrtici-list {
    margin-left: 15.6%;
  }
  #treca{
    display: block;
  }
  .login__close{
    margin-top: 0;
  }
  .landing {
    position: relative;
    margin-top: 20%; /* Adjust top margin as needed */
    text-align: left; /* Center align text */
    height: 220px;
}
.mar-top{
  margin-top: 160%;
}
.features{
  margin-top: 5%;
}
.feature-item{
  width: 28vw;
}
.hor-lan-img{
  top: 90vw;
}
}
@media screen and (min-width: 520px){
  .carouselHOME{
    height: 110vw;
  }
  .hor-lan-img{
    top: 450px;
  }
  .vrtici-list {
   margin-left: 15.7%;
  }
  .prvi{
    font-size: 1.5rem;
  }
  .car-p{
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 550px) {
  .glavni{
    font-size: 3.2rem;
  }
  .pod{
    font-size: 1.4rem;
  }
  .cssbuttons-io-button{
    font-size: 1.1rem;
  }
  .car-p{
    font-size: 1.3rem;
  }
  .prijava{
    font-size: 1.2rem;
    top: 216px;
  }
  .mar-top{
    margin-top: 155%;
  }
}
@media screen and (min-width: 560px){
  .vrtici-list {
    margin-left: 15.8%;
  }
  .features{
    top: 80vw;
  }
  .feature-item{
    height: 60px;
  }
  .prijava{
    right: 15px;
  }
  .cssbuttons-io-button{
    margin-left: 5px;
  }
}
@media screen and (min-width: 590px){
  .backButton{
    position: absolute;
    left: 3%;
  }
  .hor-lan-img{
    top: 87vw;
  }
  .hor-edit img{
    width: 40px;
  }
  .blog-item{
    min-width: 240px;
  }
  .opis{
    font-size: 1.5rem;
  }
  .vrtici-list {
    margin-left: 15.9%;
    width: 65.2%;
  }
  .prvi{
    font-size: 1.7rem;
  }
  .glavni{
    width: 98vw;
  }
  .landing{
    height: 270px;
  }
}
@media screen and (min-width: 600px){
  .gradoviTip:hover p{
    position: fixed;
    margin-top: -70px;
    margin-left: -40%;
  }
  .hor-bottom img{
    width: 40px;
    height: auto;
  }
  .status-hor-bottom p{
    font-size: 1.5rem;
  }
  .bottom-sheet .body h2 {
    font-size: 2.5rem
  }
  .hor-lan-img{
    scale: 1;
  }
  .glavni{
    font-size: 3.5rem;
  }
  .hor-lan-img{
    top: 500px;
  }
  .prijava{
    top: 249px;
  }
  .cssbuttons-io-button{
    top: 280px;
  }
  .mar-top{
    margin-top: 152%;
  }
}
@media screen and (min-width: 630px){
  .features{
    margin-top: 2%;
  }
  .blog-item{
    min-width: 49%;
  }
  .vrtici-list {
    margin-left: 16%;
    width: 65.3%;
  }
  #treca{
    display: none;
  }
  #prva{
    display: block;
  }
  .hor-lan-img{
    top: 545px;
    width: 97%;
  }
  .mar-top{
    margin-top: 100%;
  }
  .cssbuttons-io-button{
    margin-left: 3vw;
  }
  .prijava{
    margin-top: 54px;
    margin-right: 1vw;
  }
}
@media screen and (min-width: 650px)
{
  .section-below-divider h1{
    font-size: 3rem;
  }
  .bottom-sheet .body h2 {
    font-size: 2.9rem;
  }
  .hor-lan-img{
    top: 540px
  }
  .cssbuttons-io-button{
    top: 330px;
  }
  .mar-top{
    margin-top: 105%;
  }
  .prijava{
    top: 300px;
  }
  .glavni{
    font-size: 4rem;
  }
  .pod{
    position: relative;
    font-size: 1.7rem;
    width: 80%;
    margin-inline: auto;
  }
  .prvi{
    font-size: 1.8rem;
  }
  .car-p{
    font-size: 1.5rem;
  }
}
@media screen and (min-width:670px) {

  .carousel-item img{
    max-height: 550px;
  }
  
  .blog-item{
    min-width: 47%;
  }
  .carousel{
    max-width: 100%;
  }
  .vrtici-list{
    margin-left: 16%;
  }
  .blogLINK{
    font-size: 1.5rem;
  }
  .features{
    top: 77vw;
  }
  .feature-text{
    font-size: 0.9rem;
  }
}
@media screen and (min-width:715px) {
  .hor-lan-img{
    top: 580px;
  }
  .hor-bottom img{
    width: 45px;
  }
  .prijava{
    right: 1vw;
    top:302px;
    font-size: 1.5rem;
  }
  .cssbuttons-io-button{
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 750px) {

  .bottom-sheet .body h2 {
    font-size: 3.2rem;
  }
  .section-below-divider h1{
    font-size: 3.5rem;
  }
  .opis{
    font-size: 1.8rem;
  }
  .vrtici-list {
    width: 65.2%;
    margin-left: 16.3%;
  }
  .feature-content img{
    width: 6vw;
  }
  .prvi{
    font-size: 2.2rem;
  }
  .glavni{
    font-size: 4.5rem;
  }
  .pod{
    font-size: 1.9rem
  }
}
@media screen and (min-width:780px) {
  .gradoviTip:hover p{
    position: fixed;
    margin-top: -70px;
    margin-left: -20%;
  }
  .cssbuttons-io-button{
    left: 2vw;
  }
  .carouselHOME{
    height: 110vw;
  }
  .car-p{
    font-size: 1.8rem;
  }
  .prijava{
    right: 4vw;
  }
}
@media screen and (min-width:820px) {
  .features{
    top: 75vw;
  }
  .vrtici-list {
    width: 65.3%;
  }
  .hor-bottom img{
    width: 50px;
    height: auto;
  }
  .feature-item{
    height: 65px;
  }
  .glavni{
    position: relative;
    margin-inline: auto;
    width: 90%;
  }
}
@media screen and (min-width: 860px) {
  
  #treca{
    display: none;
  }
  .blog-item{
    min-width: 32%;
  }
  .vrtici-list {
    width: 65.1%;
    margin-left: 16.5%;
  }
  #prva{
    display: block;
  }
  .prvi{
    font-size: 2.4rem;
  }
  .features{
    top: 72vw;
    margin-top: 0;
  }
  .cssbuttons-io-button{
    top: 380px;
  }
  .hor-lan-img{
    width: 97%;
    top: 640px;
  }
  .prijava{
    top: 358px;
  }
  .feature-item{
    min-height: 70px;
  }
  .pod{
    font-size: 2.2rem;
  }
  .landing{
    margin-top: 14%;
    height: 1vw;
  }
  .mar-top{
    margin-top: 140%;
  }
}
@media screen and (min-width:920px){

  .backButton{
    position: absolute;
    left: 5%;
  }
  .blogLINK{
    font-size: 1.7rem;
  }
  .hor-edit img{
    width: 50px;
  }
  #treca{
    display: none;
  }
  .vrtici-list {
    width: 65.3%;
    margin-left: 16.4%;
  }
  #prva{
    display: block;
  }
  .landing{
    margin-top: 12%;
  }
  .prijava{
    margin-right: 2%;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 1.6rem;
  }
  .cssbuttons-io-button{
    width: 50%;
    font-size: 1.3rem;
  }
  .mar-top{
    margin-top: 1200px;
    margin-bottom: 10%;
  }
  .hor-lan-img{
    top:570px;
    width: 97%;
  }
}
@media screen and (min-width: 1000px){
  .prijava{
    margin-right: 5%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .vrtici-list {
    margin-left: 16.6%;
    width: 65.1%;
  }
  .cssbuttons-io-button{
    margin-left: 5%;
  }
  .gradoviTip:hover p{
    position: fixed;
    margin-top: -70px;
    margin-left: -7%;
  }
}

.delete{
  margin-left: auto;
  margin-right: 10%;
}
#nemaObjava{
  margin-top: 25%;
}
#nemaObjava p{
font-size: 1rem;
}

}
.vrtici-list{
  padding-top: 20px;
}
/*JEJA*/

.save-container {
  display: flex;
  justify-content: center;
}
.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}


.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== LOGIN ===============*/
.login__form, 
.login__group {
  display: grid;
}

.login__form {
  margin-inline: auto;
  margin-top: 5%;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  border-radius: 1rem;
  row-gap: 1.25rem;
  text-align: center;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.login__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.login__group {
  row-gap: 1rem;
}

.login__label {
  display: block;
  text-align: initial;
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: .25rem;
}

.login__input {
  width: 100%;
  background-color: var(--container-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  border-radius: .5rem;
  color: var(--text-color);
}

.login__input::placeholder {
  color: var(--text-color);
}

.login__signup {
  margin-bottom: .5rem;
}

.login__signup a {
  color: var(--first-color);
}

.login__forgot {
  display: inline-block;
  color: var(--first-color);
  margin-bottom: 1.25rem;
}

.login__button {
  display: inline-block;
  background-color: var(--first-color);
  width: 100%;
  color: #fff;
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: box-shadow .4s;
}

.login__button:hover {
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
}

/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .login__form {
  transform: translateY(0);
}

.show-direktor {
  display: block;
}


/*=============== BREAKPOINTS ===============*/
/* For medium devices */

@media screen and (min-width: 576px) {
  .search,
  .login {
    padding-top: 10rem;
  }

  .search__form {
    max-width: 450px;
    margin-inline: auto;
  }

  .search__close,
  .login__close {
    width: max-content;
    top: 15%;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 2rem;
  }

  .login__form {
    max-width: 400px;
    margin-inline: auto;
  }
}

.inputEdit {
  width: 50%;
  max-width: 125px;
  padding: 12px;
  border: 1px black solid;
  border-radius: 4px;
  box-shadow: 2px 2px 7px 0 rgb(0, 0, 0, 0.2);
  outline: none;
  color: dimgray;
}

.inputEdit:invalid {
  animation: justshake 0.3s forwards;
  color: red;
}

@keyframes justshake {
  25% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX-(5px);
  }
}

.status-buttons{
  margin-left: auto;
  gap: 2vw;
  display: flex;            /* Enable flexbox */
  justify-content: space-between;
  align-items: center;    
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .blog-lista {
    width: 90%;
    margin-top: 5%;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap; 
    gap: 5%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .prvi{
    font-size: 2.5rem;
  }
  #telefoncic{
    font-size: 1.2rem;
  }
  #prva{
    display: block;
  }
  .nav{
    width: 90%;
  }
  #settings-close,
  #location-close {
    position: fixed;
    font-size: 2.5rem;
    right: 5%;
    cursor: pointer;
  }
  .messageBubble {
    position: fixed;
    top: 120px;
    left: 40%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    visibility: hidden; /* Initially hidden */
    transition: visibility 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 3rem;
  }
  .nav__close, 
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }
  .hor-items{
    margin-left: auto;
    min-width: 150px;
    width: 40%;
    position: relative;
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically (optional) */
  }

  .login__form {
    padding: 3rem 2rem 3.5rem;
  }

  .landing {
    position: relative;
    margin-top: 20%; /* Adjust top margin as needed */
    margin-inline: auto; /* Adjust left margin as needed */
    text-align: left; /* Center align text */
  }

  .glavni {
    text-align: center;
    width: 90vw;
    margin-bottom: 2%;
    font-size: 4.2rem;
    font-weight: bold;
    color: #000;
  }
  
  .pod {
    margin-inline: auto;
    text-align: center;
    margin-bottom: 5%;
    justify-content: right;
    margin-top: 4%;
    width: 90vw;
    font-size: 2.2rem;
    color: #505050;
  }

  .mar-top{
    margin-top: 75vw;
  }

  .lokacija{
    width: 100px;
    height: auto;
  }

  .cssbuttons-io-button {
    margin-bottom: 2%;
    margin-top: 6%;
    background: var(--first-color);
    color: white;
    font-family: inherit;
    padding: 3px;
    padding-left: 1.2em;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--first-color);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    width: 57%;
  }
  
  .cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--first-color);
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--title-color);
  }
  
  .cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button:active .icon {
    transform: scale(0.95);
  }

  .cssbuttons-io-button2 {
    margin-top: 2%;
    background: var(--first-color);
    color: white;
    font-family: inherit;
    padding: 3px;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--first-color);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    width: 80%;
  }
  
  .cssbuttons-io-button2 .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--first-color);
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .cssbuttons-io-button2:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button2 .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--title-color);
  }
  
  .cssbuttons-io-button2:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button2:active .icon {
    transform: scale(0.95);
  }

  .features {
    gap: 1.5rem;
    width: 50vw;
    position: relative;
    display: flex;
    justify-content: left;
    margin-top: 5%;
  }
  
  .feature-item {
    gap: 0.2rem;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 2%; /* Adjust padding as needed */
    display: flex;
    align-items: center;
    width: 13vw; /* Set width to 20% for better responsiveness */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 3vw; /* Set width to 20% for better responsiveness */
    height: auto; /* Maintain aspect ratio */
  }
  
  .feature-text {
    font-size: 0.7rem; /* Adjust font-size using viewport width for responsiveness */
    color: #333;
    margin-left: 5px;
  }
  
  .feature-content {
    gap: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  

  .section-below-divider {
    margin-top: 7%;
    margin-bottom: 3%;
    position: relative;
    background-color: var(--ljubicasta-color);
     /* Add some padding for spacing */
    color: white; /* Ensure the text color contrasts with the background */
    font-weight: bold;
  }
  
  .section-below-divider h1{
    margin-top: 2%;
    color: white;
    font-size: 50px;
    display: grid;
    place-items: center;
    height: 30%;
  }
  
  .custom-shape-divider-bottom-1718820657 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }


  .div_vrtica {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between; /* Distributes space between items equally */
    align-items: center; /* Centers items horizontally */
    height: 5%; /* Makes the div fill the height of the viewport */
    padding: 5px; /* Optional: Adds some padding */
    box-sizing: border-box; /* Ensures padding is included in the height */
  }
  
  .div_vrtica ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around; /* Distributes the items evenly */
    align-items: center;
    width: 100%;
    max-width: 1700px; /* Makes the ul responsive */
    padding: 10px; /* Adds some padding to the ul */ /* Adds vertical margin to each ul */
    text-align: center; /* Centers the text inside the items */
  }
  
  .div_vrtica ul li {
  
    font-size: 40px;
    margin-left: 10px;
    list-style: none;
    padding: 10px 20px;
    margin-top: 2%;
    flex: 1; /* Makes the list items take equal space */
  }

  .kraj {
    margin-top: 8%;
    margin-bottom: 3%;
    text-align: center; /* Center aligns the h1 */
  }
  
  .kraj h1 {
    color: #000;
    font-size: 34px; /* Adjust as needed */
    margin-bottom: 20px; /* Adds space below the h1 */
  }
  .kraj-hor {
    display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Aligns items vertically */
  }
  
  .contact-form {
    margin-left: auto; /* Adjust margin as needed */
    margin-right: auto; /* Adjust margin as needed */
    width: 60%; /* Adjust width as needed */
    padding: 20px;
  }
  
  .contact-form label {
    color: black;
  }
  
  .contact-form .heading {
    font-size: 24px;
    color: black;
    margin-bottom: 12px;
    font-weight: bold;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 10px;
  }
  
  textarea {
    resize: none;
    height: 80px;
    width: 100%; /* Adjust width as needed */
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%; /* Adjust width as needed */
    padding: 10px;
    border: 1px solid #ccc; /* Optional border */
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box; /* Ensures padding and border are included in width */
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 5px var(--first-color);
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
  }
  
  .contact-form button[type="submit"] {
    background-color: var(--first-color); /* Adjust to your color variable */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .contact-form button[type="submit"]:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }


  .pretraga{
    position: relative;
    margin-top: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack items vertically */
  }
  
  
  .forma-pret {
    --input-bg: #FFF; /* Background color of input */
    --padding: 1.5em; /* Padding inside the input */
    --rotate: 80deg; /* Rotation degree of input */
    --gap: 2em; /* Gap between items in input */
    --icon-change-color: var(--first-color); /* Color of icon when rotating */
    --height: 40px; /* Height of input */
    width: 48%; /* Width of form */
    padding-inline-end: 1em; /* Padding at the end of input */
    background: var(--input-bg);
    position: absolute;
    border-radius: 4px;
    
    /* Centering the form */
  }
  
  .forma-pret label {
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--height);
  }
  
  .forma-pret input {
    width: 100%;
    padding-inline-start: calc(var(--padding) + var(--gap));
    outline: none;
    background: none;
    border: 0;
  }
  /* style for both icons -- search,close */
  .forma-pret svg {
    /* display: block; */
    color: #111;
    transition: 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    height: 15px;
  }
  /* search icon */
  .icon {
    position: absolute;
    left: var(--padding);
    transition: 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* arrow-icon*/
  .swap-off {
    transform: rotate(-80deg);
    opacity: 0;
    visibility: hidden;
  }
  /* close button */
  .close-btn {
    /* removing default bg of button */
    background: none;
    border: none;
    right: calc(var(--padding) - var(--gap));
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 0.1em;
    width: 20px;
    height: 20px;
    border-radius: 60%;
    transition: 0.3s;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
  }
  
  .forma-pret input:focus ~ .icon {
    transform: rotate(var(--rotate)) scale(1.3);
  }
  
  .forma-pret input:focus ~ .icon .swap-off {
    opacity: 1;
    transform: rotate(-80deg);
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret input:focus ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret input:valid ~ .icon {
    transform: scale(1.3) rotate(var(--rotate))
  }
  
  .forma-pret input:valid ~ .icon .swap-off {
    opacity: 1;
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret input:valid ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret input:valid ~ .close-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0s;
  }
  
  .forma-pret2 {
    margin-top: 3%;
    margin-left: 50%;
    --input-bg: var(--body-color); /* Background color of input */
    --padding: 1.5em; /* Padding inside the input */
    --rotate: 80deg; /* Rotation degree of input */
    --gap: 2em; /* Gap between items in input */
    --icon-change-color: var(--first-color); /* Color of icon when rotating */
    --height: 40px; /* Height of input */
    width: 40%; /* Width of form */
    padding-inline-end: 1em; /* Padding at the end of input */
    background: var(--input-bg);
    position: absolute;
    border-radius: 4px;
    
    /* Centering the form */
  }
  
  .forma-pret2 label {
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--height);
  }
  
  .forma-pret2 input {
    width: 100%;
    padding-inline-start: calc(var(--padding) + var(--gap));
    outline: none;
    background: none;
    border: 0;
  }
  /* style for both icons -- search,close */
  .forma-pret2 svg {
    /* display: block; */
    color: #111;
    transition: 0.3s cubic-bezier(.4,0,.2,1);
    position: absolute;
    height: 15px;
  }
  /* search icon */
  .icon2 {
    position: relative;
    transition: 0.3s cubic-bezier(.4,0,.2,1);
  }
  /* arrow-icon*/
  .swap-off {
    transform: rotate(-80deg);
    opacity: 0;
    visibility: hidden;
  }
  /* close button */
  .close-btn2 {
    /* removing default bg of button */
    background: none;
    border: none;
    right: calc(var(--padding) - var(--gap)); /* Adjust this value */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 0.1em;
    width: 20px;
    height: 20px;
    border-radius: 60%;
    transition: 0.3s;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
  }
  
  .forma-pret2 input:focus ~ .icon {
    transform: rotate(var(--rotate)) scale(1.3);
  }
  
  .forma-pret2 input:focus ~ .icon .swap-off {
    opacity: 1;
    transform: rotate(-80deg);
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret2 input:focus ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret2 input:valid ~ .icon {
    transform: scale(1.3) rotate(var(--rotate))
  }
  
  .forma-pret2 input:valid ~ .icon .swap-off {
    opacity: 1;
    visibility: visible;
    color: var(--icon-change-color);
  }
  
  .forma-pret2 input:valid ~ .icon .swap-on {
    opacity: 0;
    visibility: visible;
  }
  
  .forma-pret2 input:valid ~ .close-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0s;
  }
  
  
  .setting-btn {
    position: absolute;
    margin-left: 90%;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--first-color);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    box-shadow: 0px 0px 0px 2px var(--body-color);
  }
  .bar {
    width: 50%;
    height: 2px;
    background-color: var(--body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 2px;
  }
  .bar::before {
    content: "";
    width: 2px;
    height: 2px;
    background-color: var(--first-color);
    position: absolute;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.3s;
    box-shadow: 0px 0px 5px white;
  }
  .bar1::before {
    transform: translateX(-4px);
  }
  .bar2::before {
    transform: translateX(4px);
  }
  .setting-btn:hover .bar1::before {
    transform: translateX(4px);
  }
  .setting-btn:hover .bar2::before {
    transform: translateX(-4px);
  }


  .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 650px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: fixed; /* Use fixed positioning */
    top: 50%; /* Align the top of the element at 50% of the viewport height */
    left: 50%; /* Align the left side of the element at 50% of the viewport width */
    transform: translate(-50%, -50%); /* Center the element perfectly */
  }
  
  
  .form label{
    margin-top: 5%;
  }
  
  .title {
    font-size: 28px;
    color: var(--first-color);
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .title::before,.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: var(--first-color);
  }
  
  .title::before {
    width: 18px;
    height: 18px;
    background-color: var(--first-color);
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .message, .signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a {
    color: var(--first-color);
  }
  
  .signin a:hover {
    text-decoration: underline var(--first-color);
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }
  
  .submit {
    margin-top: 8%;
    border: none;
    outline: none;
    background-color: var(--first-color);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
  }
  
  .submit:hover {
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  .telo-direktor{
    position: relative;
    padding-bottom: 55px;
    margin-bottom: 30px;
    margin-left: 15%;
    width: 70%;
    min-height: 900px;
    height: fit-content;
    margin-top: 120px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  .hor-dir{
    gap: 10px;
    position: relative;
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically (optional) */
  }
  
  .hor-dir-img{
    margin-left: 3%;
    margin-top: 5%;
    width: 12%;
    height: 12%;
  }
  .hor-dir-img:hover{
    opacity: 0.8;
    scale: 0.95;
  }
  .hor-dir div{
    width: 40%;
    margin-left: 1%;
    margin-top: 3%;
  }
  
  .direktor-ime{
   width: 3%;
   font-size: medium;
   font-weight: bold;
   color: #000; 
  }
  
  .direktor-mail{
    font-size: small;
    color: #282828; 
  }
  
  .direktor-telefon{
    font-size: small;
    color: #282828; 
  }
  
  .direktor-vrtici {
    padding: 2%;
    position: relative;
    margin-top: 5%;
    margin-left: 5%;
    width: 90%;
    min-height: 850px;
    height: 70%;
    background-color: var(--body-color);
    border-radius: 10px;
    border: 1px solid #333; /* Set border to black and 20px thick */
  }
  
  .direktor-vrtici ul {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    gap: 10px; /* Adjust the gap between items */
    padding: 0; /* Remove default padding */
    list-style-type: none; /* Remove default list styles */
  }
  
  .vrtic-direktor-vrtici{
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    display: flex; /* Enable flexbox layout */
    align-items: center; /* Center items vertically */
  }
  
  .vrtic-direktor-vrtici img {
    margin-left: 2%;
    width: 10%;
    height: 10%;
    border-radius: 50%;
    padding: 1px;
    border: 1px solid black;
    object-fit: cover; /* Ensure the image scales and crops correctly */
}

  
  .vrtic-direktor-vrtici:hover{
    box-shadow: 0 4px 24px #cacaca;
  }
  
  .info-vrt{
    width: 250px;
    margin-left: 2%;
  }
  
  .ime-vrtica{
    color: black;
    font-size: 20px;
    font-weight: bold;
  }
  
  .progress-loader {
    margin-top: 7%;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    width: 200px;
    background: var(--body-color);
    height: 10px;
    border-radius: 7px;
  }
  
  .progress-loader2 {
    position: relative;
    width: 100%;
    background: var(--body-color);
    height: 10px;
    border-radius: 7px;
  }
  
  .progress {
    width: 1px;
    height: 10px;
    border-radius: 7px;
    background: var(--first-color);
    transition: 0.5s;
    /*animation: loading_44 5s cubic-bezier(.4,1.01,1,1) infinite;*/
  }
  
  @keyframes loading_44 {
    0% {
      width: 0%;
    }
  
    50% {
      width: 100%;
    }
  
    100% {
      width: 0%;
    }
  }
  
  .popunjenost{
    margin-left: auto;
    position: relative;
  }
  
  .popunjenost p{
    font-weight: bold;
    font-size: 15px;
    color: #000;
  }
  
  .adresa{
    font-size: 15px;
    color: #333;
  }

  .coolinput {
    display: flex;
    flex-direction: column;
    width: 2000px;
    position: static;
    max-width: 3240px;
  }
  
  .coolinput label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
  }
  
  .coolinput input[type=text].input {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
  }
  
  .coolinput input[type=text].input:focus {
    outline: none;
  }
  .coolinput2 {
    display: flex;
    flex-direction: column;
    width: 2000px;
    position: static;
    max-width: 3240px;
}

.coolinput2 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
}

.coolinput2 textarea.input,
.coolinput2 input[type=text].input {
    padding: 11px 10px;
    font-size: 1.3rem;
    font-family: inherit; /* Ensure the font family is inherited */
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
    box-sizing: border-box;
}

.coolinput2 textarea.input {
    height: 150px;
    resize: none;
    overflow: auto;
}

.coolinput2 input[type=text].input {
    height: 150px;
}

.coolinput2 textarea.input:focus,
.coolinput2 input[type=text].input:focus {
    outline: none;
}



  .coolinput3 {
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    width: 90%;
    position: static;
    max-width: 3240px;
  }
  
  .coolinput3 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: white;
    width: fit-content;
  }
  
  .coolinput3 input[type=text].input {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
  }
  
  .coolinput3 input[type=text].input:focus {
    outline: none;
  }
  .coolinput4 { 
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    width: 90%;
    position: static;
    max-width: 3240px;
    align-items: flex-start; /* Align items to the start of the container */
}

.coolinput4 label.text {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    margin: 0; /* Remove margin to ensure alignment */
    padding: 0 3px;
    background: white;
    width: 100%; /* Make label take the full width of the container */
    box-sizing: border-box; /* Ensure padding is included in width */
    word-wrap: break-word; /* Allow text to wrap within the container */
}

.coolinput4 textarea.input, /* Use a textarea element for multi-line input */
.coolinput4 input[type=text].input {
  font-family: inherit;
    padding: 11px 10px;
    font-size: 1.3rem;
    border: 2px var(--first-color) solid;
    border-radius: 5px;
    background: white;
    height: 150px;
    width: 100%; /* Make input box take the full width of the container */
    box-sizing: border-box; /* Ensure padding is included in width */
    margin-top: 0; /* Ensure no extra space above the input */
    line-height: normal; /* Set line height to normal */
    text-align: left; /* Align text to the left */
    overflow: auto; /* Enable scrolling for overflow content */
    white-space: pre-wrap; /* Preserve whitespace and wrap text */
    word-wrap: break-word; /* Allow words to break */
    display: block; /* Ensure it behaves like a block element */
}

.coolinput4 textarea.input:focus,
.coolinput4 input[type=text].input:focus {
    outline: none; /* Remove the default outline on focus */
}

  
  .hor-edit{
    position: relative;
    margin-top: 5%;
    margin-left: 5%;
    width: 90%;
    position: relative;
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically (optional) */
  }
  
  .hor-edit img{
    margin-top: 1%;
    margin-right: 5%;
    width: 5%;
    height: 5%;
  }
  
  .konta {
    margin-top: 1.5%;
    margin-left: 10px;
    width: 151px;
    height: 31px;
    position: relative;
  }
  
  /* Hide default HTML checkbox */
  .checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }
  
  .switch {
    width: 57px;
    height: 100%;
    display: block;
    background-color: #e9e9eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease-out;
  }
  
  /* The slider */
  .slider {
    width: 27px;
    height: 27px;
    position: absolute;
    left: calc(50% - 27px/2 - 10px);
    top: calc(50% - 27px/2);
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
  
  .checkbox:checked + .switch {
    background-color: #34C759;
  }
  
  .checkbox:checked + .switch .slider {
    left: calc(50% - 27px/2 + 10px);
    top: calc(50% - 27px/2);
  }
  
  .telo-edit {
    margin-inline: auto;
    padding-top: 35px;
    padding-bottom: 55px;
    position: relative;
    margin-bottom: 30px;
    margin-left: 10%;
    width: 80%;
    min-width: 800px;
    height: fit-content;
    margin-top: 120px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  .telo-edit h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center; /* Center text horizontally */
  }

  .telo-edit-blog {
    max-width: 1100px;
    padding-top: 35px;
    padding-bottom: 55px;
    position: relative;
    margin-bottom: 30px;
    margin-inline: auto;
    width: 70%;
    min-height: 85vh;
    height: fit-content;
    margin-top: 120px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
  }
  
  .telo-edit-blog h1 {
    margin-inline: auto;
    width: 80%;
    margin-bottom: 30px;
    font-size: 55px;
    font-weight: bold;
    text-align: center; /* Center text horizontally */
  }
  
  .custum-file-upload {
    width: calc(50% - 10px); /* Adjust width for two columns with gap */
    position: relative;
    overflow: hidden;
    border: 2px dashed #cacaca;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1; /* Maintain aspect ratio 1:1 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.custum-file-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit; /* Match the border-radius of the parent */
}

.custum-file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.img-input {
    background-color: var(--body-color);
    margin: 5%;
    padding: 10px;
    position: relative;
    margin-top: 5%;
    border: 1px solid #505050;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

  
  
  .ceo-status {
    position: relative;
    margin-top: 5%;
    margin-left: 6%;
    padding: 0 10px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .status-hor {
    gap: 10px;
    display: flex;            /* Enable flexbox */
    justify-content: space-between;
    align-items: center;      /* Center items vertically (optional) */
  }
  
  .status-hor p {
    font-size: 20px;
    color: #000;
  }
  
  .status-hor span {
    font-size: 20px;
    color: #000;
  }
  
  .status {
    margin-top: 4%;
    display: flex; /* Ensure items align horizontally */
    align-items: flex-start; /* Align items at the start (top) */
    width: 100%;
    gap: 20px;
    flex-wrap: wrap; /* Allow items to wrap onto new lines if needed */
  }
  
  .status-levo {
    width: calc(100% - 70px); /* Adjust width to allow space for .status-desno */
    display: flex;
    flex-direction: column; /* Ensure items align vertically */
    gap: 15px; /* Adjust this value to set the gap between items */
  }
  
  .status-desno {
    width: 90%;
    display: flex; /* Enable flexbox */
    flex-direction: row; 
    gap: 20px; /* Adjust this value to set the gap between items inside .status-desno */
    margin-top: 2%;
  }
  
  .plus, .minus {
    margin-left: auto;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .plus {
    background-color: #3aa856;
  }
  
  .plus:hover {
    background-color: #34C759;
  }
  
  .plus:active {
    transform: scale(0.95);
  }
  
  .minus {
    background-color: #ff3636;
  }
  
  .minus:hover {
    background-color: #ff1818;
  }
  
  .minus:active {
    transform: scale(0.95);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .status {
      flex-direction: column;
      gap: 10px;
    }
  
    .status-levo, .status-desno {
      width: 100%;
    }
  
    .status-levo {
      order: 1;
    }
  
    .status-desno {
      order: 2;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .plus, .minus {
      width: 40px;
      height: 40px;
    }
  
    .status-hor p {
      font-size: 18px;
    }
  }
  
  .cek-tekst {
    margin-top: 5%;
    margin-left: 5%;
    display: flex;
    width: 90%;
    gap: 35%;
    flex-direction: row;
    justify-content: space-between; /* Distributes space between items equally */
    align-items: center; /* Centers items horizontally */
    height: 5%; /* Makes the div fill the height of the viewport */
    box-sizing: border-box; /* Ensures padding is included in the height */
  }
  
  .cek-tekst2 {
    margin-top: 5%;
    margin-left: 5%;
    display: flex;
    width: 90%;
    gap: 59%;
    flex-direction: row;
    justify-content: space-between; /* Distributes space between items equally */
    align-items: center; /* Centers items horizontally */
    height: 5%; /* Makes the div fill the height of the viewport */
    box-sizing: border-box; /* Ensures padding is included in the height */
  }
  
  .cek-tekst p {
    width: 150%;
    font-size: 20px;
    color: #000;
  }
  .kroz{
    color: #252525;
    margin-top: 1.5%;
    font-size: 30px;
    font-weight: bold;
  }
  

  .show-modal {
    margin-top: 10%;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;
    font-size: 1.2rem;
    padding: 15px 22px;
    background: #4A98F7;
    transition: 0.3s ease;
    box-shadow: 0 10px 18px rgba(52,87,220,0.18);
}
.show-modal:hover {
    background: #2382f6;
}
.bottom-sheet {
  z-index: 1;
    margin-top: 8%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;
    border-radius: 18px 18px 0 0;
    overflow: hidden; /* Prevent overflow of child elements */
}
.bottom-sheet.show {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #000;
}
.bottom-sheet .content {
    width: 100%;
    position: relative;
    background: #fff;
    max-height: 100vh;
    height: 50vh;
    max-width: 1050px; /* Updated max width */
    padding: 25px 50px;
    transform: translateY(100%);
    border-radius: 18px 18px 0 0; /* Ensure the content has matching rounded corners */
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}
.bottom-sheet.show .content {
    transform: translateY(0%);
}
.bottom-sheet.dragging .content {
    border-radius: 18px 18px 0 0;
    transition: none;
}
.bottom-sheet.fullscreen .content {
    border-radius: 18px 18px 0 0;
    overflow-y: hidden;
}
.bottom-sheet .header {
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: center;
}
.header .drag-icon {
    border-radius: 18px 18px 0 0;
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -15px;
}
.header .drag-icon span {
    border-radius: 18px 18px 0 0;
    margin-top: 10px;
    height: 0.5rem;
    width: 15.8rem;
    display: block;
    background: #C7D0E1;
    border-radius: 50px;
}
.bottom-sheet .body {
  height: 100%;
  overflow-y: auto;
  padding: 15px 0 15%;
  scrollbar-width: none;
}
.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}
.bottom-sheet .body h2 {
    width: 60%;
    margin-top: 1rem;
    margin-right: 1rem;
    font-size: 4rem;
}
.bottom-sheet .body p {
  font-size: 2.1rem;
}


.hor-bottom {
  position: relative;
  display: flex; /* Use flexbox */
  align-items: center; /* Center items vertically */
}

.hor-bottom h2{
  width: 80%;
  min-width: 500px;
}

.hor-bottom img {
  margin-right: 3rem;
  margin-top: 1rem;
  width: 4rem;
  height: 4rem;
  margin-left: auto; /* Push this item to the far right */
}

.opis{
  margin-top: 30px;
  width: 90%;
  height: fit-content;
  font-size: 3rem;
  margin-bottom: 5%;
}

/* Carousel container */
.carousel {
  width: fit-content;
  margin: 50px auto; /* Adjust margin to move the carousel lower */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* Inner container for the carousel */
.carousel-inner {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 10px; /* Add padding to create peek effect */
}

/* Each carousel item */
.carousel-item {
  flex: 0 0 80%; /* Adjust this percentage to control peek size */
  scroll-snap-align: start;
  position: relative;
  margin-right: 10px; /* Adjust this value to control spacing between items */
  border-radius: 10px;
  border: 2px solid black; /* Add black border around each image */
}

/* Carousel images */
.carousel-item img {
  width: 100%;
  height: 100%; /* Ensures images maintain aspect ratio */
  max-height: 400px;
  display: block;
  border-radius: 10px;
  object-fit: cover; /* Ensures images cover the entire container */
}

.status-hor-bottom{
  width: 90%;
  font-size: 3rem;
  margin-top: 5%;
  color: black;
  display: flex;            /* Enable flexbox */
  justify-content: space-between;
  align-items: center;      /* Center items vertically (optional) */
}

.progress-loader-bottom{
  margin-top: 7%;
  position: relative;
  width: 90%;
  background: var(--body-color);
  height: 10px;
  border-radius: 7px;
}

.bot-status{
  margin-top: 10%;
}

.dalji-tekst{
  margin-top: 15%;
}
.status-hor-bottom img{
  width: 5rem;
  height: 5rem;
}

.save-button2 {
  /* Add any other styles you need for the button here */
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: var(--first-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.save-button2:hover {
  background-color: hsl(43, 98%, 50%);
}

.save-button2:active{
  scale: 0.9;
  transition: 0.3s ease;
}


.save-button {
  margin-top: 8%;
  /* Add any other styles you need for the button here */
  width: 60%;
  padding: 10px 20px;
  font-size: 1.5rem;
  color: #fff;
  background-color: var(--first-color);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.save-button:hover {
  background-color: hsl(43, 98%, 50%);
}

.save-button:active{
  scale: 0.9;
  transition: 0.3s ease;
}

.hor-dir-pop-img{
  width: 4rem;
  height: 4rem;
}

.coolinput5 {
  margin-left: 3.5%;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: static;
  max-width: 3240px;
}


.coolinput5 label.text {
  font-size: 0.75rem;
  color: var(--first-color);
  font-weight: 700;
  position: relative;
  top: 0.5rem;
  margin: 0 0 0 7px;
  padding: 0 3px;
  background: var(--container-color);
  width: fit-content;
}
.coolinput5 input[type=text].input {
  padding: 11px 10px;
  font-size: 0.75rem;
  border: 2px var(--first-color) solid;
  border-radius: 5px;
  background: var(--containter-color);
}

.coolinput5 input[type=text].input:focus {
  outline: none;
}

.hor-lan {
  display: flex; /* Use flexbox layout */
  justify-content: flex-start; /* Align items to the start horizontally */
}

.hor-lan-img{
  z-index: -1;
  position: absolute;
  top: 685px;
  left: 4%;
  width: 94%;
  height: auto;
}

.carousel__indicator2 {
  width: 10px;
  height: 10px;
  background-color: black; /* White color for inactive indicators */
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  cursor: pointer;
}

.carousel__indicator2:active {
  border-radius: 50%;
  border: 2px #000 solid;
  padding: 2px;
  background-color: white; /* Grayish color for active indicator */
}

.new-carousel {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 450px; /* Set a fixed height for the carousel */
}

.new-carousel-indicators {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

.new-carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background-color: white;
  padding: 5px;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.new-carousel-indicators .active {
  background-color: black;
  border: 1px solid white;
  opacity: 1;
}

.new-carousel-inner {
  position: relative;
  width: 100%; /* Set width to 100% for responsiveness */
  height: 100%; /* Match the height of the parent container */
  display: flex;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.new-carousel-item {
  flex: 0 0 100%; /* Each item takes up 100% of the carousel width */
  height: 100%; /* Ensure height covers the container */
  position: relative;
}

.new-carousel-item img {
  width: 100%; /* Ensure image width covers the container */
  height: 100%; /* Ensure image height covers the container */
  object-fit: scale-down; /* Cover the container without stretching */
}

#divIME {
  margin-top: 10px;
  margin-bottom: 20px;
}


#vrtLogoBlog{
  border-radius: 50%;
  width: 3%;
}

.telo-blog{
  max-width: 1300px;
  position: relative;
  margin-inline: auto;
  margin-bottom: 70px;
  width: 90%;
  min-height: 85vh;
  height: fit-content;
  margin-top: 120px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
}

.blog-tekst{
  padding: 55px;
  padding-top: 30px;
}

.blog-tekst h1{
  width: 90%;
  font-size: 4rem;
  word-wrap: break-word; /* Ensures long words wrap to the next line */
  overflow-wrap: break-word; /* Ensures long words wrap to the next line */
}
.blog-tekst sub{
  width: 90%;
  font-size: 1.2rem;
  word-wrap: break-word; /* Ensures long words wrap to the next line */
  overflow-wrap: break-word; /* Ensures long words wrap to the next line */
}
.blog-tekst p{
  width: 90%;
  margin-top: 4%;
  font-size: 2rem;
  word-wrap: break-word; /* Ensures long words wrap to the next line */
  overflow-wrap: break-word; /* Ensures long words wrap to the next line */
}
.prijava{
  right: 5vw;
  position: absolute;
  top: 80%;
  border: 2px solid var(--first-color);
  border-radius: 20px;
  padding: 9px;
    font-size: 2rem;
    color: black;
    font-weight: bold;
}

.marquee-container {
  margin-top: 1%;
  overflow: hidden;
  width: 100%;
  height: 110px; /* Adjust height as needed */
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 70s linear infinite;
  width: fit-content; /* Ensure content width is based on items */
}

.marquee-content img{
  width: 20%;
}

.marquee-item {
  width: fit-content;
  margin-left: 10px;
  min-width: 350px; /* Adjust width as needed */
  padding: 10px;
  padding-right: 60px;
  border-radius: 15px;
  border: 1px solid #ddd; /* Optional border for visibility */
  background-color: #f9f9f9; /* Optional background color */
}

.marquee-content:hover {
  animation-play-state: paused; /* Pause animation on hover */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-content2 {
  display: flex;
  animation: marquee2 70s linear infinite;
  width: fit-content; /* Ensure content width is based on items */
}
.marquee-content2:hover {
  animation-play-state: paused; /* Pause animation on hover */
}
@keyframes marquee2 {
  100% {
    transform: translateX(0);
  }
  0% {
    transform: translateX(-50%);
  }
}

.custom-shape-divider-top-1718819328 {
  position: relative;
  margin-top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1718819328 svg {
  position: relative;
  display: block;
  width: calc(159% + 1.3px);
  height: 71px;
}

.custom-shape-divider-top-1718819328 .shape-fill {
  fill: var(--body-color);
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}


@media screen and (max-width: 1400px) {
  .car-p{
    margin-bottom: 5%;
    margin-inline: auto;
    width: 85vw;
  }
  .vrtici-list {
    display: none;
    width: 48.1%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 1vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-inline: auto;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .section-below-divider h1{
    margin-top: 5%;
    font-size: 5rem;
  }
.carouselHOME {
  padding-top: 10px;
  position: relative;
  width: 98vw; /* Full viewport width */
  height: 70vw; /* Full viewport height */
  overflow: hidden;
}
.carousel__track-container {
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden;
}

.carousel__track {
  display: flex;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  transition: transform 0.5s ease;
}

.carousel__slide {
  flex: 0 0 100vw; /* Each slide takes 80% of the viewport width */
  padding: 0; /* Remove padding */
  box-sizing: border-box;
}

.carousel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 70px;
  padding-left: 50px;
  padding-right: 50px; /* Add padding to create space around content */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.car-p{
  font-size: 1.7rem;
}
.carousel__content img {
  width: 600px; /* Adjust image width */
  height: auto; /* Maintain aspect ratio */
  margin-top: 20px; /* Add margin top for separation */
}

.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  color: white;
}

.carousel__button--left {
  left: 10px; /* Adjust position from left */
}

.carousel__button--right {
  right: 10px; /* Adjust position from right */
}

.carousel__nav {
  position: relative;
  bottom: 10px; /* Adjust position from bottom */
  left: 50%; /* Center align horizontally */
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 1;
}

.carousel__indicator {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  cursor: pointer;
}

.carousel__indicator.active {
  background-color: gray;
}
.location-button {
  left: -10%;
  top: -24px;
  width: 50px;
  height: 50px;
}
}

@media screen and (min-width:1100px) {
  .nav__link {
    font-size: 1.1rem;
    color: black;
    font-weight: var(--font-semi-bold);
    transition: color .4s;
  }
  .car-p{
    font-size: 2rem;
  }
  .cssbuttons-io-button{
    margin-top: 8%;
  }
  .pod{
    width: 70vw;
    font-size: 2.5rem;
  }
  .glavni{
    font-size: 5rem;
  }
  .prijava{
    margin-top: 1.5%;
  }
  .hor-lan-img{
    top: 780px;
  }
  .messageBubble{
    position: fixed;
    left: 42%;
  }
  .vrtici-list {
    display: none;
    width:48.1%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 1vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-inline: auto;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .slider {
    width: 27px;
    height: 27px;
    position: absolute;
    left: calc(50% - 27px/2 - 12px);
    top: calc(50% - 27px/2);
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
}
@media screen and (min-width:1150px){
  .nav__link {
    font-size: 1.2rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
  }
  .hor-lan-img{
    top: 825px;
  }
}
@media screen and (min-width:1200px){
  
  .prvi{
    font-size: 3rem;
  }

  .vrtici-list {
    display: none;
    width:48.1%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 1vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-inline: auto;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .landing{
    margin-top: 15%;
  }
}
@media screen and (min-width:1250px){
  .cssbuttons-io-button{
    margin-left: 6%;
  }
  .prijava{
    right: 7%;
  }
}
@media screen and (min-width:1400px) {
  .forma-pret{
    width: 45%;
  }
  .landing{
    margin-left: 0;
    margin-top: 13%;
  }
  .hor-lan-img{
    top: 300px;
    width: 58%;
    left: 36%;
  }
  .mar-top{
    margin-top: 25%;
  }
  .pod{
    text-align: left;
    margin-left: 5%;
    font-size: 2.5rem;
    width: 30vw;
    margin-bottom: 2%;
  }
  .prijava{
    margin-left: -10px;
    border: none;
    font-style: italic;
    align-content: center;
    margin-top: 6%;
    width: 18vw;
    left: 6%;
    font-size: 1.6rem;
  }
  .glavni{
    margin-left: 1%;
    font-size: 4.2rem;
    width: 95vw;
    margin-bottom: 6%;
  }
  .vrtici-list {
    display: none;
    width: 45.1%; /* Make the list take the full width of the form */
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-inline: auto;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
   
  }
  .cssbuttons-io-button{
    margin-top: 3%;
    margin-left: 5%;
    font-size: 1.4rem;
    width: 30%;
  }
  .carouselHOME {
    position: relative;
    width: 98vw; /* Adjusted width to accommodate padding */
    height: 10%; /* Adjusted height as needed */
    margin: 0 auto;
    overflow: hidden;
    padding: 0 5%; /* Added padding to the left and right */
  }
  
  .carousel__track-container {
    width: 100%;
    overflow: hidden;
  }
  
  .carousel__track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel__slide {
    flex: 0 0 100%; /* Each slide takes full width */
    height: 100%; /* Ensure slide takes full height of carousel */
    padding: 20px;
    box-sizing: border-box;
  }
  
  .carousel__content {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align items horizontally */
  }
  
  .car-p {
    font-weight: normal;
    font-size: 2rem;
    flex: 1;
    margin-right: 10px; /* Decrease the margin between paragraph and image */
  }
  
  .carousel__content img {
    max-width: 50%; /* Adjust width of image */
    height: auto; /* Maintain aspect ratio */
  }
  
  
  .carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1; /* Ensure buttons are above the track */
    color: white; /* Adjust button color */
  }
  
  .carousel__button--left {
    left: 20px; /* Increased distance from left */
  }
  
  .carousel__button--right {
    right: 20px; /* Increased distance from right */
  }
  
  .carousel__nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .carousel__indicator {
    width: 10px;
    height: 10px;
    background-color: white; /* White color for inactive indicators */
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .carousel__indicator.active {
    background-color: gray; /* Grayish color for active indicator */
  }
  .messageBubble{
    position: fixed;
    left: 43%;
  }
  .telo-edit{
    width: 1100px;
    margin-inline: auto;
  }
  .slider {
    width: 27px;
    height: 27px;
    position: absolute;
    left: calc(50% - 27px/2 - 12px);
    top: calc(50% - 27px/2);
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
  .section-below-divider h1{
    margin-bottom: 50px;
  }
}
@media screen and (min-width:1450px){
  .glavni{
    font-size: 4.4rem;
  }
  
}
@media screen and (min-width: 1500px) {
  .messageBubble{
    position: fixed;
    left: 44%;
  }
  .pod{
    font-size: 2rem;
    margin-top: 5%;
    margin-left: 1%;
  }
  .glavni{
    font-size: 4rem;
    text-align: left;
    margin-bottom: 5%;
    width: 40vw;
  }
  .landing{
    margin-left: 5%;
    margin-top: 14%;
    margin-bottom: 5%;
  }
  .mar-top{
    margin-top: 13%;
  }
  .prijava{
    width: fit-content;
    margin-left: -5%;
    margin-top: 14%;
    font-size: 1.5rem;
  }
  .cssbuttons-io-button{
    margin-top: 8%;
    font-size: 1.7rem;
    width: 75%;
    margin-left: 1%;
  }
  .hor-lan-img{
    top: 250px;
    width: 55%;
    left: 43%;
  }
  .feature-text{
    font-size: 1rem;
  }
}
@media screen and (min-width: 1600px){
}
@media screen and (min-width:1750px) {
  .slider {
    width: 27px;
    height: 27px;
    position: absolute;
    left: calc(50% - 27px/2 - 11px);
    top: calc(50% - 27px/2);
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
  .bottom-sheet .body {
    padding-bottom: 22%;
  }
  .landing{
    margin-top: 12%;
  }
  .hor-lan-img{
    top: 270px;
    width: 50%;
    left: 45%;
  }
  .glavni{
    margin-top: 5%;
    width: 40vw;
  }
  .pod{
    width: 35vw;
    margin-bottom: 7%;
  }
  .prijava{
    margin-top: 13%;
    font-size: 1.8rem;
  }
  .feature-item{
    width: 12vw;
  }
  .feature-content img{
    width: 2vw;
  }
  .mar-top{
    margin-top: 15%;
  }
  .car-p{
    font-size: 2.3rem;
  }
  .cssbuttons-io-button{
    width: 70%;
  }
}
#nemaObjava{
  margin-top: 15%;
}
#nemaObjava p{
  font-size: 1.8rem;
  }
  .backButton{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 3%;
  }
  .location-button {
    background-color: green;
    left: 23%;
    top: -24px;
    width: 50px;
    height: 50px;
  }
  .location-pin {
    position: relative;
    width: 28px; /* Increased the size of the pin head */
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pin-head {
    top: 5px;
    width: 26px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pin-hole {
    width: 10px;
    height: 10px;
    background-color: var(--first-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  .pin-base {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid white;
    position: absolute;
    top: 22px;
  }
  
  .gradoviTip:hover p{
    position: fixed;
    margin-top: -70px;
    margin-left: -7%;
  }
}
/*JAJE*/
  .container {
    margin-inline: auto;
  }


  .settings {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    background-color: hsla(230, 75%, 15%, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); 
    padding: 8rem 1.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
}

.settings.show {
    opacity: 1;
    pointer-events: auto;
}

.pop-meni {
    visibility: hidden;
    z-index: calc(var(--z-modal) + 1); /* Ensure it's above the backdrop */
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.settings.show .pop-meni {
    visibility: visible;
}
  
  
  .drop-button {
    position: relative;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .button {
    background-color: var(--first-color);
    color: #212121;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    font-size: 13px;
    position: absolute;
    z-index: 1;
    min-width: 200px;
    background-color: #212121;
    border: 2px solid var(--first-color);
    border-radius: 0px 15px 15px 15px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }
  
  .dropdown-content a {
    color: var(--first-color);
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    transition: 0.1s;
  }
  
  .dropdown-content a:hover {
    background-color: var(--first-color);
    color: #212121;
  }
  
  .dropdown-content a:focus {
    background-color: #212121;
    color: var(--first-color);
  }
  
  .dropdown-content #top:hover {
    border-radius: 0px 13px 0px 0px;
  }
  
  .dropdown-content #bottom:hover {
    border-radius: 0px 0px 13px 13px;
  }
  
  .paste-button:hover button {
    border-radius: 15px 15px 0px 0px;
  }
  
  .paste-button:hover .dropdown-content {
    display: block;
  }
  
  
  .pop-meni h1 {
    text-align: center;
  }


  
  .blog-item {
    margin-bottom: 5%;
    width: 30%;
    height: 300px;/* Fixed height for the item */
    border: 0.18rem solid var(--title-color);
    border-radius: 14px;
    overflow: hidden; /* Ensure contents don’t overflow */
    display: flex;
    flex-direction: column;
  }
  
  .blog-item img {
    width: 100%;
    height: 50%; /* Adjust height to fit within the container */
    object-fit: cover;
  }
  
  .blog-item h1 {
    margin: 0; /* Remove default margin */
    margin-left: 5%;
    margin-top: 2%;
    text-align: left;
    color: black;
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .mesto-lokacija {
    margin-left: 3.5%;
    margin-top: 1%;
    color: grey;
    font-size: 0.8rem;
  }
  
  .opis-posta {
    padding-bottom: 0.5rem;
    margin-top: 2%;
    margin-left: 5%;
    width: 80%;
    color: grey;
    font-size: 0.8rem;
    overflow: hidden; /* Hide overflow content */
    text-overflow: ellipsis; 
    white-space: nowrap;
  }
  

  .objavi{
    margin-bottom: 10%;
    margin-left: 10%;
    display: inline-block;
    background-color: var(--first-color);
    width: 80%;
    color: #fff;
    font-weight: var(--font-semi-bold);
    padding: 1rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: box-shadow .4s;
  }
  .objavi:hover{
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  }
  .objavi:active{
    scale: 0.95;
    transition: 0.3s;
  }
  

.delete {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
  gap: 2px;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.delete:hover {
  transition-duration: 0.3s;
  background-color: rgb(255, 69, 69);
  align-items: center;
  gap: 0;
}

.bin-top {
  transform-origin: bottom right;
}
.delete:hover .bin-top {
  transition-duration: 0.5s;
  transform: rotate(160deg);
}




.kontenjer {
  display: flex;
  align-items: center;
}
.kontenjer_ver {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}


.slika{
  width: 50%;
  height: 50%;
  margin-top: 0%;
  margin-left: 90%;
  margin-bottom: 20%;
}

/* Layout for smaller screens */


.custom-shape-divider-bottom-1718820657 svg {
  position: relative;
  display: block;
  width: calc(131% + 1.3px);
  height: 119px;
}

.custom-shape-divider-bottom-1718820657 .shape-fill {
  fill: var(--body-color);
}
/* styles.css */


.review-slika-text {
  display: flex; /* Use flexbox to align items horizontally */
  align-items: center; /* Align items vertically in the center */
}

.review-slika-text img {
  /* Add your specific styles here */
  margin-right: 10%; /* Example margin between items */
}
.review {
  color: #333;
  font-size: small;
  margin-top: 4%;
  width: 350px; /* Adjust width as needed */
  word-wrap: break-word; /* Allow words to break and wrap onto the next line */
}
.review-text{
  width: 100%;
  color: #000;
}
.review-subtitle{
  color: rgb(36, 36, 36);
}



.o_nama {
  padding-top: 3%;
  position: relative;
  margin-top: 2%;
  color: white;
  text-align: center;
  background-color: var(--first-color);
  width: 100%;
  height: 100%;
}

.o_nama h1 {
  margin-top: 1 auto; /* Ensures that margins are auto for horizontal centering */
  font-size: 50px;
}

.custom-shape-divider-top-1718863569 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1718863569 .shape-fill {
  fill: var(--body-color); /* Set the fill color to white */
}

.equally-spaced-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

.equally-spaced-container > section {
  margin: 0 0.5rem; /* Adjust the margin to control spacing */
}


.card {
  width: 20%;
  height: 25rem;
  background: rgb(39, 39, 39);
  border-radius: 12px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.123);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition-duration: .5s;
}

.profileImage {
  background: linear-gradient(to right,rgb(54, 54, 54),rgb(32, 32, 32));
  margin-top: 20px;
  width: 60%;
  height: 55%;
  border-radius: 50%;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.329);
}

.profileImage img{
  scale: 0.95;
}

.textContainer {
  width: 100%;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.name {
  font-size: 0.9em;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}

.profile {
  font-size: 0.84em;
  color: rgb(194, 194, 194);
  letter-spacing: 0.2px;
}

.card:hover {
  background-color: rgb(43, 43, 43);
  transition-duration: .5s;
}
/* Commands to change the shadows in dark mode
@media (prefers-color-scheme: dark) {
  .card:hover {
  box-shadow: 0 8px 16px #000000;
  }
}*/
.custom-shape-divider-top-1720610232 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1720610232 svg {
  position: relative;
  display: block;
  width: calc(173% + 1.3px);
  height: 32px;
}

.custom-shape-divider-top-1720610232 .shape-fill {
  fill: var(--body-color);
}

.lokacija {
  z-index: -1;
  position: fixed;
  bottom: 1%;
  left:0.5%;
}

.custom-shape-divider-bottom-1720617119 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1720617119 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 26px;
}

.custom-shape-divider-bottom-1720617119 .shape-fill {
  fill: var(--body-color);
}

.pop-meni {
  padding-top: 35px;
  padding-left: 10px;
  padding-right: 10px;
  margin-inline: auto;
  background-color: var(--body-color);
  color: black;
  border-radius: 10px;
  width: 80%;
  height: 60%;
  display: flex;
  flex-direction: column; /* Keep items vertical */
  align-items: center; /* Center horizontally */
  gap: 10%;
  max-width: 500px;
}

#drugiPRG{
  display: none;
}

.strelica {
  margin-left: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 10px;
  display: flex;
  align-items: center;
}

.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 5px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid black;
}

.arrow.down {
  transform: rotate(-180deg);
}


.hor-status {
  order: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.coolinput3{
  margin-bottom: 2%;
}

#left2,
#right2{
  outline: #000;
  color: var(--first-color);
}

.plus{
  margin-left: 10px;
}

.status{
  display: none;
}

html, body {
  width: 100%;
  overflow-x:hidden;
}

.messageBubble{
  z-index: 1000;
}

.status-hor-bottom h1 {
  width: 70%;
  overflow: hidden;        /* Hide the overflowing text */
  white-space: nowrap;     /* Prevent the text from wrapping to a new line */
  text-overflow: ellipsis; /* Display the ellipsis (...) when text overflows */
}

.hor-items img{
  margin-left: auto;
}

.status-hor-bottom p{
  width: 80%;
}
.nav__link{
  color: 	black;
}

.popunjenost{
  display: none;
}

/**/


.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login__input {
  padding-right: 40px; /* Space for the button */
}

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password input {
  display: none;
}

.icon-eye, .icon-eye-slash {
  width: 24px;
  height: 24px;
  fill: #000;
  transition: opacity 0.3s ease;
}

.icon-eye-slash {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-checkbox:checked ~ .icon-eye {
  opacity: 0;
  pointer-events: none;
}

.toggle-checkbox:checked ~ .icon-eye-slash {
  opacity: 1;
  pointer-events: all;
}

#nemaObjava{
  display: none;
}
#nemaObjava img{
  width: 30%;
  margin-inline: auto;
}
#nemaObjava p{
  text-align: center;
  font-weight: bold;
}

.mesto-lokacija{
  width: 60%;
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Display ellipsis (...) for overflowing text */
  white-space: nowrap; /* Prevent text from wrapping to the next line */
}


.backButton {
  display: block;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
  cursor: pointer;
}

.backButton::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid black; /* Adjust the size of the arrow */
  transform: translateX(-2px); /* Adjust position if needed */
}


.vertical-review{
  width: 90vw;
}

.bottom-sheet .body{
  overflow-x: hidden;
}

.hor-items{
  font-size: 0.1rem;
}

.location-button {
  background-color: var(--first-color);
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  transition: 0.3s ease;
}

.location-button:hover {
  background-color: darken(var(--first-color), 10%);
}
.location-button:active{
  scale: 0.9;
}

.location-button:hover .pin-hole {
  background-color: rgb(141, 141, 141);
}


#gradovi{
  overflow: auto;
  margin-left: 0;
  min-height: 400px;
}

.gradoviTip{
  margin-left: 7px;
}

.gradoviTip p{
  display: none;
}

.pop-meni{
  min-height: 580px;
}


#pretragaGrada{
  margin-bottom: -40px;
  width: 90%;
}

#pretragaGrada label.text,
#pretragaGrada input[type=text].input  {
  background: var(--body-color);
}

.gradoviTip:hover p{
  opacity: 0.84;
  color: white;
  padding: 10px;
  display: block;
  background-color: #252525;
  border-radius: 12px;
  border: 2px solid #1d1d1d;
}


@media screen and (min-width: 1023px) and (max-width: 1400px) {
  .location-button {
    left: 20%;
    top: -24px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 1750px) {
  .location-button {
    left: 23%;
    top: -24px;
    width: 50px;
    height: 50px;
  }
}
