.form-control-nasz-zespol {
    border: none;
    border-radius: 10px;
    background: #F7F7F7;
    width: fit-content;
    padding: 12px;
    outline: none;
}

.autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: rgb(242, 242, 242);
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
    width: fit-content;
    min-width: 300px;
    
}

.autocomplete-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.autocomplete-list li:hover {
    background: #e2e2e2;
}

.search-wrapper {
    position: relative;
}