body,
html {
  font-family: "Roboto", sans-serif;
  background-color: #f4f4f7;
  padding: 20px;
  overflow-y: auto;
}

.container {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #0056b3;
}

.form-section {
  background: #f8f9fa;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.form-control:focus {
  border-color: #4a90e2;
  box-shadow: none;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #007bff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%; /* Aligns directly below the input */
  left: 0;
  width: 100%;
  display: none;
  z-index: 1000;
}

.dropdown-vehicle-container {
  position: relative;
}

.dropdown-vehicle-menu {
  position: absolute;
  top: 100%; /* Position directly below the input field */
  left: 0;
  width: 100%; /* Make the dropdown as wide as the input field */
  z-index: 1000; /* Ensure dropdown appears on top of other content */
  display: none; /* Hide by default, show via JavaScript */
  background-color: #fff; /* Optional: background color for the dropdown */
  border: 1px solid #ccc; /* Optional: border for the dropdown */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow for dropdown */
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.highlighted {
  background-color: #f8f9fa;
}

#deleteBtn {
  padding: 5px 10px; /* Adjust padding as needed */
  font-size: 16px; /* Adjust font size as needed */
}
