:root {
	font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;

	color-scheme: light dark;
	color: rgba(0, 0, 0, 0.5);
	background-color: var(--white);

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

a {
	font-weight: 500;
	color: #646cff;
	text-decoration: inherit;
}
a:hover {
	color: #535bf2;
}

body {
	margin: 0;
	color: white;
	background: #1d1e26;
	/* background-image: url("./assets/bg.jpg"); */
	background-repeat: no-repeat;
	background-size: cover;
	filter: brightness(0.7);
	display: flex;
	justify-content: center;
	align-items: flex-start !important;
	min-width: 320px;
	min-height: 100vh;
	/* overflow: hidden; */
}

h1 {
	font-size: 3.2em;
	line-height: 1.1;
}

.card {
	padding: 2em;
}

#app {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	text-align: start;
}

/* button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
} */

@media (prefers-color-scheme: light) {
	:root {
		color: #213547;
		background-color: #ffffff;
	}
	a:hover {
		color: #747bff;
	}
	/* button {
    background-color: #f9f9f9;
  } */
}

/* booking page */

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.lot {
	/* background-color: #444451; */
	/* background-image: url(../assets/car-solid.svg);
*/
	/* background-image: url("../assets/car-solid.svg"); */
	background-size: cover;
	/* display: flex; */
	/* align-items: baseline; */
	background-repeat: no-repeat;
	height: 50px;
	width: 60px;
	margin: 15px;
	/* padding: 50px; */
	/* padding: 5%; */
	/* border-top-left-radius: 10px; */
	/* border-top-right-radius: 10px; */

	/* height: 30px; */
	/* width: 35px; */
	filter: brightness(1) invert(1);
	/* background: #01163e; */
	border: 2px solid #94b2ee48;
	border-radius: 4px;
	transition: all 0.2s ease;
}
.lot.selected {
	background-color: var(--red);
}
.lot.booked {
	background-color: grey !important;
}
.lot.car {
	background-image: url('/car-side-solid.svg');
	/* display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important; */
	/* align-self: center; */
}
.lot.bike {
	background-image: url('/motorcycle-solid.svg');
}
.lot.cycle {
	background-image: url('/bicycle-solid.svg');
}
p.number {
	/* color: white !important; */
	padding-top: 10;
	margin-left: 50%;
	margin-top: 50px;
	filter: invert(1);
}
.alert {
	z-index: -1000;
	font: 10px sans-serif;
}
