/* Wrapper pre vyhľadávací input, aby sme mohli pozicovať návrhy */
.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px; /* Alebo podľa dizajnu */
}

#suggestionsBox {
    display: none; /* Štandardne skrytý */
    position: absolute;
    top: 100%; /* Zobrazí sa hneď pod inputom */
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}