#suggestions-list {
  border: 1px solid #ddd;
  max-height: 150px;
  overflow-y: auto;
  margin-top: 5px;
}

.suggestion-item {
  padding: 5px;
  cursor: pointer;
}

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

#arrival-details {
  text-align: center;
}

#departure-details {
  text-align: center;
}

#sobe_div {
  display: none;
}

.autocomplete {
  position: relative;
  display: inline-block;
}

.flight-code-container {
  display: none;
  align-items: center;
  margin-left: 8px;
  margin-top: 8px;
}

label {
  width: 25%;
  text-align: center;
}


#search-button {
  padding: 8px 8px;
  margin-left: 8px;
  cursor: pointer;
  line-height: 18px;
  background-color: #320040;
  color: #fff;
  width: 32%;
  border-radius: 3px;
}

.manuelButton {
    background-color: #ebebeb;
    color: #007bff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    transition: background-color 0.3s ease;
    text-transform: capitalize;
    box-shadow: 1px 1px 4px -1px #ababab;
}

.manuelButton:hover {
  color: #fff;
  /* Hover durumunda buton rengi */
}

.checkButton {
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.checkButton:hover {
  background-color: #0300b3;
  /* Hover durumunda buton rengi */
}


input {
  margin-left: 8px;
  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: 0px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  margin-left: 20px;
  margin-right: 100px;
  z-index: 99;
  top: 110px;
  width: 100px;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.flight-info-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.flight-info-container {
  display: flex;
  flex-direction: column;
  /* Vertical alignment */
  padding: 0px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.flight-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  /* Space between info and details */
}

.flight-info-section {
  flex: 1;
  text-align: center;
}

.flight-info-section h2 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.station {
  font-size: 1.5em;
  font-weight: bold;
  color: #007BFF;
}

.time {
  font-size: 1.2em;
  color: #666;
}

.arrival-details {
  font-size: 1.1em;
}

.arrival-details p {
  margin: 5px 0;
}

.arrival-details strong {
  color: #333;
}


.departure-details {
  font-size: 1.1em;
}

.departure-details p {
  margin: 5px 0;
}

.departure-details strong {
  color: #333;
}


.button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.button-container button {
  flex: 1;
  padding: 10px;
  margin: 0 5px;
  font-size: 1em;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button-container button:hover {
  background-color: #0056b3;
}


.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  text-align: center;
  align-items: center;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.arrow-container {
  margin: 50px;
  overflow: hidden;
}

.arrow-path {
  fill: none;
  stroke: #0056b3;
  ;
  stroke-width: 10;
  stroke-dasharray: 8;
  /* Kesikli çizgi */
  animation: drawPath 2s forwards;
  margin-right: 50px;
}

.arrow-head {
  fill: #0056b3;
  transform-origin: 185px 100px;
  /* Ok ucunu bitiş noktasına sabitler */
  transform: rotate(35deg) scale(1);
  /* Ok ucunu 30 derece aşağı eğip 4 kat büyütür */
  opacity: 0;
  margin-left: 100px;
  animation: fadeIn 1s forwards;
  animation-delay: 1s;
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.src-flight {
  text-line: 1px;

}

.date {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.stack-container {
  position: relative;
  /* Konteyneri pozisyona göre ayarla */
  width: 100%;
  height: 200px;

}

.stack-item {
  position: absolute;
  /* Üst üste binen elemanlar */
  width: 100%;
}

.item1 {
  z-index: 1;
  /* Üstte görünmesi için z-index ayarla */
  width: 100%;
  margin-top: 80px;
}

.item2 {
  z-index: 2;
  /* Üstte görünmesi için z-index ayarla */
  width: 100%;
  margin-top: 0px;
}


.alert {
  padding: 20px;
  background-color: #f44336;
  /* Red */
  color: white;
  margin-bottom: 15px;
  border-radius: 5px;
}

.close-btn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: black;
}