* {
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  color: #333;
}
.autocomplete {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}
label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
#szak-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background: #fff;
}
.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #d4d4d4;
  border-top: none;
  z-index: 99;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: none;
}
.autocomplete-items div {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.3;
  color: #222;
}
.autocomplete-items div:last-child {
  border-bottom: none;
}
.autocomplete-items div:hover,
.autocomplete-active {
  background-color: #f2f7ff !important;
}
mark {
  background: #ffe58f;
  padding: 0;
}
