section {
	min-height: fit-content !important;
}

main {
	overflow-y: scroll;
}

/* Scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--bs-primary) transparent;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: var(--bs-primary);
}