.transfers-form-surface {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.transfers-form-surface .input-group-text {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.transfers-form-surface .form-control,
.transfers-form-surface .form-select {
  border-radius: 10px;
}

.transfers-form-surface .btn.search-form-submit.transfers {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

/* Destination Map Container */
.destination-map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #e5e5e5;
  margin-top: 8px;
}

.destination-map-container #destination-map {
  width: 100%;
  height: 100%;
}

/* Responsive styles for mobile devices */
@media screen and (max-width: 768px) {
  .destination-map-container {
    height: 300px;
    border-radius: 8px;
  }
}

@media screen and (max-width: 576px) {
  .destination-map-container {
    height: 250px;
  }
}















