body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('https://medium-filter.s3.ap-south-1.amazonaws.com/med.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 4rem auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 0.7rem;
  margin: 0.5rem 0;
  border: 1px solid #aaa;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  background-color: #2e7d32;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
}

button:hover {
  background-color: #1b5e20;
}

.date-range {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 1rem;
}

.date-range label {
  font-size: 0.9rem;
  margin: 0 5px;
  white-space: nowrap;
}
