
.search {
    position: relative; 
    width: 100%;
}

.search input {
    border: solid 1px white;
    background-color: rgba(217, 217, 217, 0.5);
    height: 4vh;
    border-radius: 10px;
    padding: 8px; 
    padding-left: 7vh;
    color: white;
    width: calc(100% - 7vh - 8px);
    font-size: 16px; 
    outline: none;
}

.search input::placeholder {
    color: white;
}

#search-icon { 
    position: absolute; 
    top: 50%; 
    left: 2vh;
    width: 3vh; 
    transform: translateY(-50%); 
    cursor: pointer; 
}

.suggestions { 
    position: absolute;
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: white;
    border: 1px solid #ccc; 
    max-height: 35vh; 
    overflow-y: auto; 
    display: none; 
    z-index: 100;
}

.suggestions div { 
    padding: 10px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    font-family: 'Tilt Warp', sans-serif;
}

.suggestions div:hover { 
    background: #f2f2f2; 
}

.suggestions img { 
    width: 40px; 
    height: auto; 
    margin-right: 10px; 
}
