.legend {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: var(--radius-input, 10px);
}

.lengend-title {
	text-align: center;
	width: 100%;
}

.legend-item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 1rem;
}


.dot{
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
}

.dot.available {
	background-color: green;
}

.dot.request {
	background-color: #42a3d2;
}

.dot.over30 {
	background-color: red;
}

.dot.notavailable {
	background-color: red;
}

.dot.under30 {
	background-color: orange;
}