:root {
	--card-border: silver;
	--card-color: white;
	--card-color2: #f8f9fa;
	--card-text: gray;
	--card-title: darkslateGray;
	--gold-title: goldenrod;
	--blackish: Black;
	--background-alt: #BDBDBD;
	--background: #BDBDBD;
	--button-border: Silver;
	--button: #426fca;
	--button-text: #fff;
	--normal-text: #333;
	--top-label: #cbba9c;
	--navbar: #3D3D3D;
	--silver: Silver;
	--shadow: #ccc;
	--blueish: #00555a;
	--Menu-blue: #0067B0;
	--Menu-main: #565658;
	--Blue-selected: #B3D3EC;
	--Page-label: #343a40;
	--Page-heading: #00555a;
	--greenish: #4a6446;
	--greenish-accent: #60BD82;
	--Dark-green: #217346;
	--slate-gray: darkslateGray;
	--lightGray: #999;
	--White: white;
	--cream-white: #f3f5e6;
	--highlight-blue: #426fca;
	--medium-gray: #636872;
	/* --font-to-use: "roboto"; */
	--font-to-use: "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	--font-size-Xtra-large: 20px;
	--font-size-large: 16px;
	--font-size-normal: 14px;
	--font-size-small: 12px;
}

.circle-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: 1;
	/* Allow the container to grow and fill the available space */
}

.circle {
	background-color: var(--button);
	border-radius: 50%;
	color: var(--button-text);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 60px;
	margin: 0 auto 10px auto;
	/* Center horizontally */
	text-align: center;
}

.row {
	display: flex;
	justify-content: space-between;
	/* Distribute circles evenly */
	width: 100%;
	position: relative;
}

@keyframes slideInFromLeft {
	from {
		transform: translateX(400%);
		opacity: 0;
	}

	to {
		transform: translateX(0%);
		opacity: 1;
	}
}

.circle-done {
	align-items: center;
	background-color: var(--highlight-blue);
	border-radius: 50%;
	color: var(--button-text);
	display: flex;
	font-size: 30px;
	height: 30px;
	justify-content: center;
	margin: 10px;
	position: relative;
	text-align: center;
	width: 30px;
	animation: slideInFromLeft 0.5s ease-out forwards;
}

.circle-urgent {
	align-items: center;
	background-color: maroon;
	border-radius: 50%;
	color: var(--button-text);
	display: flex;
	font-size: 30px;
	height: 30px;
	justify-content: center;
	margin: 10px;
	position: relative;
	text-align: center;
	width: 30px;
	animation: slideInFromLeft 1s ease-out forwards;
}

.circle-released {
	align-items: center;
	background-color: var(--greenish);
	border-radius: 50%;
	color: var(--button-text);
	display: flex;
	font-size: 30px;
	height: 30px;
	justify-content: center;
	margin: 10px;
	position: relative;
	text-align: center;
	width: 30px;
	animation: slideInFromLeft 1s ease-out forwards;
}


.circle-home {
	align-items: center;
	background-color: var(--top-label);
	border-radius: 15px;
	display: flex;
	font-size: var(--font-size-small);
	height: 30px;
	justify-content: center;
	margin: 10px;
	text-align: center;
	position: relative;
	width: 30px;
	padding: 10px;
	animation: slideInFromLeft 0.5s ease-out forwards;
}

.circle-home-urgent {
	align-items: center;
	background-color: maroon;
	border-radius: 15px;
	display: flex;
	font-size: var(--font-size-small);
	color: var(--button-text);
	height: 30px;
	justify-content: center;
	margin: 10px;
	text-align: center;
	position: relative;
	width: 30px;
	padding: 10px;
	animation: slideInFromLeft 1s ease-out forwards;
}


.circle-label {
	font-size: var(--font-size-small);
	font-weight: 400;
	color: var(--normal-text);
	width: auto;
	margin: 0px;
	padding-bottom: 0;
	text-decoration: none;
}

.circle-label-urgent {
	font-size: var(--font-size-small);
	font-weight: 400;
	color: var(--white);
	width: auto;
	margin: 0px;
	padding-bottom: 0;
	text-decoration: none;
}