/* Admin stats page — the native from/to datepicker row above the preset
   date-range links. */

.stats-date-form {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin: 0;
}

/* forms.css resets appearance: none on every input, which hides the native
   calendar picker on date inputs — restore it (the same fix the retired
   data-explorer form carried). */
.stats-date-form input[type="date"] {
  appearance: auto;
  -moz-appearance: auto;
  -webkit-appearance: auto;
  color-scheme: light;
}

.stats-date-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  position: static;
}

/* forms.css also resets appearance on selects, which strips the native
   dropdown arrow — restore it for the country filter, same fix as the date
   inputs above. */
.stats-date-form select {
  appearance: auto;
  -moz-appearance: auto;
  -webkit-appearance: auto;
  color-scheme: light;
}
