body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #fff;
  color: #000;
}

.dark-mode {
  background: #121212;
  color: #e0e0e0;
}


#topBar, #bottomBar {
  position: fixed;
  left: 0;
  right: 0;
  background: #f0f0f0;
  padding: 10px 16px;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

#topBar {
  top: 0;
  border-bottom: 1px solid #ccc;
}

#bottomBar {
  bottom: 0;
  border-top: 1px solid #ccc;
  justify-content: center;
}

.dark-mode #topBar, .dark-mode #bottomBar {
  background: #1e1e1e;
  border-color: #444;
  color: #eee;
}


#szoveg {
  padding: 16px;
  margin-top: 80px;
  margin-bottom: 70px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  line-height: 1.6;
}


.kiemelt.főnév { background-color: #d5f5e3; }
.kiemelt.ige { background-color: #cce5ff; }
.kiemelt.határozószó { background-color: #fff799; }
.kiemelt.melléknév { background-color: #ffe0f0; }

.dark-mode .kiemelt.főnév { background-color: #2e8b57; color: #fff; }
.dark-mode .kiemelt.ige { background-color: #336699; color: #fff; }
.dark-mode .kiemelt.határozószó { background-color: #a88c00; color: #fff; }
.dark-mode .kiemelt.melléknév { background-color: #b30059; color: #fff; }


.talalat {
  box-shadow: 0 0 6px 2px red;
}
.dark-mode .talalat {
  box-shadow: 0 0 6px 2px orange;
}


.no-results {
  color: #999;
  font-style: italic;
  margin-top: 1em;
}
.dark-mode .no-results {
  color: #ccc;
}




@media screen and (max-width: 768px) {
  #topBar, #bottomBar {
    font-size: 14px;
    padding: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }

  #topBar input[type="text"],
  #topBar button,
  #bottomBar button {
    font-size: 14px;
    padding: 6px 10px;
    min-height: 36px;
    max-width: 48%;
    flex: 1 1 auto;
    box-sizing: border-box;
  }
  
  

  #filterGroup {
    display: flex;
    justify-content: center;
  }

  #filterGroup label {
    font-size: 14px;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #filterGroup input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }

  #szoveg {
    margin-top: 100px;
    margin-bottom: 60px;
    padding: 12px;
    font-size: 16px;
    line-height: 1.6;
  }

  #talalatInfo {
    font-size: 13px;
    margin-top: 4px;
    display: block;
    text-align: center;
  }


  #zipBar {
    text-align: center;
    margin-top: 8px;
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;	
  }

  #zipBar button {
    font-size: 14px;
    padding: 8px 12px;
    min-height: 40px;
    width: 90%;
    max-width: 300px;
	display: none;
  }

}

