.container {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
    }

    .naslov {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .galerija {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      margin-bottom: 20px;
    }

    .galerija img {
      height: 250px;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .galerija img:hover {
      transform: scale(1.05);
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
      margin-bottom: 20px;
    }

    .info-grid div {
      background-color: #fff;
      padding: 12px 16px;
      border-radius: 8px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

    .opis {
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .kontakt {
      text-align: center;
      margin-top: 30px;
      display: none;
    }

    .kontakt a {
      background-color: #007bff;
      color: white;
      text-decoration: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 18px;
    }

    .kontakt a:hover {
      background-color: #0056b3;
    }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 10px;
    }

    #lightbox::after {
      content: "✖";
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 32px;
      color: white;
      cursor: pointer;
    }
    label{
    	color: #ffc700;
    	font-size: 24px;

    }
    button{
    	margin-top:10px; 
    	padding:10px 20px; 
    	background-color:#ffc700; 
    	color:#2c2c2c; border:none; 
    	border-radius:6px; 
    	cursor:pointer;
    	transition: 0.3s ease;
      font-size: 19px;
    }
    button:hover{
    	border: 1px solid #ffc700;
    	background-color: #2c2c2c;
    	color: #ffc700;
    }
    .calendar-container {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      display: inline-block;
    }

    input[type="date"] {
      padding: 10px;
      font-size: 16px;
      margin-bottom: 10px;
    }


    #output {
      margin-top: 20px;
      font-size: 18px;
      color: #333;
    }
    #prikazi{
      width: 100%;
      height: 30%;
    }