* {
  font-family: system-ui;
	box-sizing: border-box;
}

body {
	margin: 0;
}

h1 {
	font-size: 1.5rem;
}

.vstack {
  display: flex;
  flex-direction: column;
}
.hstack {
  display: flex;
  flex-direction: row;
}
.justify-end {
	justify-content: flex-end;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}

.temp-display {
	padding: 0.5rem;
	font-size: 1rem;
	line-height: 1.5rem;
	border: 1px solid rgb(209, 213, 219);
	border-radius: 0.25rem;;
}

.closeButton {
	padding: 0.25rem;
	background: transparent;
	border: none;
	font-size: 0.875rem;
	line-height: 1.25rem;
	cursor: pointer;
	border-radius: 0.25rem;
	color: rgba(0,0,0,0.75);
}
.closeButton:hover,
.closeButton:focus {
	background-color: rgba(0, 0, 0, 0.1);
}
.closeButton:active {
	background-color: rgba(0, 0, 0, 0.15);
}

.hstack {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100vw;
}

button {
  margin-bottom: 4px;
  padding: 8px 16px;
}
