.search-container {
    position: relative;
    width: fit-content;
}

.search-bar {
    width: 300px; /* Możesz dostosować szerokość */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.search-results {
    position: absolute;
    top: 100%; /* Umieszczamy wyniki tuż pod polem */
    left: 0;
    width: 600px;
    background: white;

    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.search-item {
    padding: 10px;
    cursor: pointer;
}

.search-item:hover {
    background: #f0f0f0;
}

.dropdown-list {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  width: auto;
  z-index: 1000;
  display: none;
}

.wyszukaj-wojewodztwo-item {
  padding: 8px;
  cursor: pointer;
}

.wyszukaj-wojewodztwo-item:hover {
  background-color: #f0f0f0;
}

.filtrowanie-button {
  margin: 0 auto;
    width: 90%;
    display: flex;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #808080;
    justify-content: center;
}
