aside {
	margin: 1em;

	p {
		font-size: smaller;
		font-size: 0.9rem;
	}

	@media screen and (min-width: 768px) {
		align-self: flex-start;
		position: sticky;
		top: 78px;
		flex: 1;
	}

	article {
		margin: 1em 0;
	}
}

section {
	flex: 3;
}

.article,
article {
	display: flex;
	flex-direction: column;
	margin: 1em;
	padding: 1em;
	border-radius: 20px;
	background-color: white;

	@media (prefers-color-scheme: dark) {
		background-color: #011611;
		filter: blur(.03em);
		border: 1px solid #0e2e29;
	}


	@media screen and (min-width: 992px) {
		padding: 2em 2em 1em 2em;
		margin: 1em 1em 1em 0;

		@media (prefers-color-scheme: dark) {
			padding: 1.5em 1.5em 0.5em 1.5em;

		}
	}

	section {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;

		margin-top: 2em;

		&:first-of-type {
			margin-top: 0;
		}


		@media screen and (min-width: 992px) {
			flex-direction: row;
			gap: 2em;
		}

		div {
			flex: 1;
			align-items: center;
			width: 100%;
		}
	}





	p {
		font-size: 1rem;
		margin: .8em 0;

		@media (prefers-color-scheme: dark) {
			font-family: monospace;
			font-weight: 400;
			font-style: normal;
			font-size: .9rem;
			color: #3ed3d5;
			color: var(--darkmode-color-text, #719456);

		}
	}
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;

	tr {
		@media (prefers-color-scheme: dark) {

			border-left: 1px solid #09342b;
			border-right: 1px solid #09342b;

		}
	}

	th,
	td {
		text-align: left;
		padding: 0.5em;
		border-bottom: 1px solid #ddd;

		@media (prefers-color-scheme: dark) {
			border-bottom: 1px solid #0d483b;

			&::selection {
				color: rgb(88, 141, 48);
				background-color: #043a26;
			}
		}


	}

	th {
		font-weight: bold;
		background-color: #f2f2f2;

		@media (prefers-color-scheme: dark) {
			color: #3ed3d5;
			background-color: #03271f;
		}
	}

	tr:hover {
		background-color: #f5f5f5;

		@media (prefers-color-scheme: dark) {
			color: #3ed3d5;
			background-color: #03271f;
		}
	}

	small {
		padding: 0;
		margin: 0;
	}
}

#options {
	section {
		align-items: flex-start;

	}
}

.table-container {
	overflow-x: auto;
	/* Enables horizontal scrolling when content overflows */
}

/* Optional: Prevent text wrapping within table cells for a cleaner scroll experience */
.table-container th,
.table-container td {
	white-space: nowrap;

	@media screen and (min-width: 768px) {
		white-space: normal;
	}

}


.flex {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-wrap: wrap;

	@media screen and (min-width: 992px) {
		align-items: center;
		flex-direction: row;
	}

	&-align-start {
		align-items: flex-start;
	}

	&-align-center {
		align-items: center;
	}

	&-align-end {
		align-items: flex-end;
	}


	>* {
		flex: 1;
	}

	&-grow-0 {
		flex-grow: 0;
	}
}

.justify-space-between {
	justify-content: space-between;
}

.mt-md {
	margin-top: 2rem;
}

.mr-auto {
	margin-right: auto;
}

.ml-auto {
	margin-left: auto;
}