
.search-container {
    position: relative;
    width: 60%;
    margin: 20px auto;
}

#search-bar {
    width: 100%;
    padding: 15px;
    border-radius: 24px;
    border: 3px solid #182C50;
    background-color: #f7f9fb;
    font-size: 1rem;
    color: #182C50;
}

#search-bar:focus {
    outline: none;
    border-color: #182C50;
}

#suggestions-container {
    position: absolute;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border-radius: 8px;
    display: none;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    color: rgba(24, 44, 80, 0.5);
    font-size: 1rem;
}

.suggestion-item:hover {
    background-color: #f2f2f2;
}
