.iveco-header-bar {
  background: #002244;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-search-vehicle {
  display: flex;
  gap: 0.5rem;
}
.header-search-vehicle input {
  padding: 0.5rem;
  font-size: 1rem;
}
.header-search-vehicle button {
  padding: 0.5rem 1rem;
  background: #e30613;
  color: white;
  border: none;
  cursor: pointer;
}

/* Modal styling */
.vehicle-modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.vehicle-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
}
.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
