* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: 16px Arial;
  background-color: #282828;
}
.leaflet-routing-alternatives-container {
  display: none;
}
.map {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0 !important;
}
.searchButton {
  width: 15%;
  height: 40px;
  margin-top: 10px;
  margin-left: 5px;
  background-color: grey;
  color: white;
  border-radius: 10px;
  border: 0px;
  cursor: pointer;
}
.searchButton:hover{
  background-color: #5e5555;
}
.button {
  background-color: #cb2741; /* Kırmızı */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: 100%;
  border-radius: 20px;
  margin-top: 10px;
  cursor: pointer;
}
.button:hover {
  background-color: #cb2741;
}
.map-card-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
.map .map-card-container .map-card {
  width: 20%;
  height: 30%;
  background-color: #f1eaea;
  z-index: 9999 !important;
  position: absolute;
  top: 5%;
  right: 5%;
  border-radius: 15px;
  display: inline-block;
  overflow: hidden;
}
.map .map-card-container .map-card .map-card-title {
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.map .map-card-container .map-card .map-card-content {
  height: 100%;
  width: 100%;
  /* background-color: red; */
}
.map .map-card-container .map-card .map-card-content .map-card-input {
  width: 100%;
  padding: 5px;

  /* background-color: red; */
}
.map
  .map-card-container
  .map-card
  .map-card-content
  .map-card-input
  .autocomplete
  input {
  width: 100% !important;
  padding: 13px;
  outline-style: none;
  border-bottom-left-radius: 10px;
  border: 1px solid #ddd;
  /* background-color: red; */
}

.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type="text"] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type="submit"] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

#page {
  background-color: #282828;
  width: 100%;
  padding: 30px;
}
#mapSide {
  background-color: white;
  width: 100%;
  height: 350px;
  border: 3px solid;
  position: relative;
}
#filterSide {
  background-color: #282828;
  width: 100%;
  height: 350px;
  padding: 10px;
}
#page-container {
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  display: flex;
  width: 100%;
  background-color: #282828;
}
input[type="text"],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:last-child {
  background-color: #cb2741;
  color: white;
}
#table {
  margin: 10px;
  background-color: white;
}
#startSelectListDiv{
  display: none;
}
#finishSelectListDiv{
  display: none;
}
.startSelectList {
  overflow: auto;
  margin-bottom: 10px;
  height: 150px;
  border: 1px solid;
  border-color: grey;
}
.selectListUl {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.selectListUl > li {
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border-bottom: 1px solid;
  color: white;
}
.selectListUl > li:hover {
  background-color: grey;
}
