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;
}

.container .d-flex {
  margin-bottom: 20px; /* Adjust spacing as necessary */
}

.btn-info {
  padding: 5px 15px; /* Smaller button */
}
#invoiceModal .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

#invoiceModal .table th,
#invoiceModal .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

#invoiceModal .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

#invoiceModal .table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

#invoiceModal .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#buttonsContainer .btn {
  margin-right: 10px; /* Adjust the right margin as needed */
}

#buttonsContainer .btn:last-child {
  margin-right: 0; /* Removes margin from the last button */
}
