/* Osnovni stil za info stranicu */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 20px 30px 10px 30px;
  border-bottom: 2px solid #ccc;
}

.time-box {
  text-align: left;
  color: #333;
}

.time-box #current-time {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
}

.time-box #today-date {
  font-size: 18px;
  color: #888;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #2e7d32;
}

.logo-box img {
  height: 50px;
  display: block;
}

.weather-box {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.weather-box a {
  border-radius: 0;
  width: 100% !important;
  display: inline-block;
}

.weather-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  pointer-events: all;
}


.main-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.left-panel {
  flex: 1;
  background-color: #354239;
  color: #fff;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 320px;
}

.left-panel h2 {
  font-size: 20px;
  border-bottom: 1px solid #f0f2f1;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #ffffff;
}

.vaktija-lista {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.vaktija-lista li {
  padding: 8px 0;
  border-bottom: 1px solid #888;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.sljedeci-namaz-box {
  margin-top: 20px;
  font-size: 17px;
  font-weight: bold;
  background-color: #40614e;
  padding: 10px 15px;
  border-radius: 4px;
  text-align: center;
  color: #fff;
}


.right-panel {
  flex: 2;
  background-color: #f7f7f7;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.right-panel h2 {
  font-size: 22px;
  color: #2e7d32;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 10px;
  margin-bottom: 16px;
  margin-top: 0;
  margin-left: 0;
}

.info-fixed {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.mobil-naslov {
  display: none;
}

#obavjestenja-tekst {
  font-size: 20px;
  line-height: 1.1; /* SMANJEN RAZMAK */
  color: #333;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: justify;
}

  #hadis-box {
  text-align: center;
  font-style: italic;
  font-size: 16px;
  color: #2e7d32;
  margin: 15px;
  padding-top: 40px;
  border-top: 0px solid white;
}



/* MOBILNA VERZIJA */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }
  
  .top-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: #2e7d32;
  padding: 20px 30px 10px 30px;
  border-bottom: 2px solid #ccc;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

  .left-panel {
    max-width: 100%;
    padding: 20px 15px;
  }

  .right-panel {
    padding: 20px 15px;
  }

  .logo-box {
    flex-direction: column;
    text-align: center;
  }

  .logo-box img,
  .time-box {
    display: none;
  }

  .logo-box {
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 20px;
    padding-top: 10px;
  }

  .top-bar {
    justify-content: center;
    padding: 10px;
  }

  #obavjestenja-tekst {
    font-size: 16px;
    padding-right: 8px;
  }
  
  #hadis-box {
  text-align: center;
  font-style: italic;
  font-size: 16px;
  color: #2e7d32;
  margin: 15px;
  padding: 8px;
  border-top: 0px solid white;
}

.mobil-naslov {
  display: block;
    text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #2e7d32;
  padding: 50px 0 10px;

  border-top: 1px solid #ddd;
}




 .weather-box {
    padding-top: 30px; /* ili 30px ako želiš još više */
    background-color: #1F567C !important; /* ista boja kao u widgetu, po potrebi promijeni */
  }
  

  /* Donji razmak ispod desnog panela */
  .right-panel {
    padding-bottom: 40px; /* bijela pozadina na dnu */
  }

  /* Ako koristiš .container kao okvir, možeš dodati i margin-bottom */
  .container {
    margin-bottom: 40px;
  }
  


}

