.schnellanfrage {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 9999;
  margin-top: 30px;
}

.schnellanfrage form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.schnellanfrage input[type="date"],
.schnellanfrage button {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.schnellanfrage button {
  background-color: #2c8f5d;
  color: white;
  border: none;
  cursor: pointer;
  width: 320px;
}

.schnellanfrage button:hover {
  background-color: #333333;
}