:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #6ee7b7;
  --muted: #9aa4b2;
  --text: #e6eef7;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #071020 0%, #0b1530 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.title {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.2px;
}

#citySelect {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.02)
  );
  color: var(--text);
  font-size: 16px;
  margin-bottom: 18px;
}

.result {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.city-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  text-transform: capitalize;
}

.date-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* small helper for screen reader-only label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
    border: 0;
}
