#vm-live-search {
 position: relative;
 width: 500px; /* prilagodi širinu po potrebi */
}
#vm-search-input {
 width: 100%;
 margin: .5rem;
 padding: 8px;
}
.lightsearch-container {
 position: absolute;
 top: 100%; /* tačno ispod input polja */
 left: 0;
 width: 100%;
 max-height: 200px;
 overflow-y: auto;
 background: white;
 border: 1px solid #ccc;
 border-radius: 4px;
 box-shadow: 0 4px 6px rgba(0,0,0,0.1);
 z-index: 9999;

 display: none; /* Sakriveno dok se ne unese tekst */
}

.lightsearch-container ul {
 list-style: none;
 padding-left: 0;
 margin: 0;
}

.lightsearch-container li {
 padding: 8px 12px;
 cursor: pointer;
}

.lightsearch-container li:hover {
 background-color: #f0f0f0;
}