/* 🔍 Globális keresősáv */
#globalSearchInput {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

#globalSearchBtn {
  padding: 10px 16px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#globalSearchBtn:hover {
  background-color: #0088cc;
}

/* 📦 Találati konténer */
#globalSearchResults {
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 🧩 Egyedi találati blokk */
.search-result {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.search-result h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
  color: #222;
}

.search-result p {
  margin-bottom: 1em;
  line-height: 1.6;
  color: #444;
}

.search-result a {
  color: #0073aa;
  text-decoration: underline;
  font-weight: 500;
}

.search-result a:hover {
  color: #005f8d;
}

/* 📁 Kategória címke */
.search-result p:last-of-type {
  font-style: italic;
  color: #555;
  margin-bottom: 1em;
}

/* 🧭 Kategória szűrő gombok */
#globalSearchResults button {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  background: #f9f9f9;
  font-size: 0.9rem;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

#globalSearchResults button:hover {
  background-color: #e6f4ff;
}