.search-bar {
    position: fixed;
    display: none;
    left: 10px;
    align-items: center;
    background: white;
    border-radius: 20px;
    border: 1px solid grey;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    z-index: 1000;
}

.search-bar input {
    border: none;
    outline: none;
    padding-left: 10px;
    font-size: 16px;
    width: 300px;
}

.search-bar svg {
    width: 18px;
    height: 18px;
    fill: #666;
}

