body {
  background: #fdf5f2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Left Section */
.left-section {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.nav-tabs {
  border: none;
  gap: 10px;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 10px 25px;
  font-weight: 600;
  color: #ff6600;
  background: #fff;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background: #ff6600;
  border-radius: 6px 6px 0 0;
  border-bottom: 3px solid #ff6600;
}

/* Form Fields */
.form-label {
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

/* Buttons */
.btn-search {
  width: 100%;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  background: linear-gradient(45deg, #ff6600, #ff4500);
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-search:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

/* Map Container */
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Show Route Button */
.btn-destination {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* Row gap */
.row-gap {
  gap: 25px;
}
