.dropoff-page {
  max-width: 500px;
  margin: 40px auto;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropoff-page h2 {
  text-align: center;
  margin-bottom: 25px;
}

.dropoff-form .form-group {
  margin-bottom: 15px;
}

.dropoff-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.dropoff-form input,
.dropoff-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.dropoff-form button {
  width: 100%;
  background-color: #222;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
}

.dropoff-form button:hover {
  background-color: #ffda4d;
  color: #222;
}

.suggestions-list {
  list-style: none;
  background: white;
  border: 1px solid #ccc;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.suggestions-list li {
  padding: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestions-list li:hover {
  background-color: #f0f0f0;
}
