.search-bar {
    margin: 0 auto 0; 
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding-right: 65px;
}

.search-bar input.form-control {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(1px);
}

.search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #d3d3d3;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background-color: #b8b8b8;
}

.search-submit::after {
    content: '→';
    color: white;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    top: -3px; /* try -1px or -2px depending on your font */
}

.search-suggestions {
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.search-suggestions .list-group-item {
    cursor: pointer;
    background-color: white;
    border: none;
    border-bottom: 1px solid #eeeeee;
}

.search-suggestions .list-group-item:hover,
.search-suggestions .list-group-item.selected {
    background-color: #f8f9fa;
}

.search-suggestions .list-group-item:last-child {
    border-bottom: none;
}

.search-container {
    position: relative;
}