/* Wrapper for the whole page */
html, body {
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
}

.footer-basic {
	background-color: #808080;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	padding: 45px;
	padding-top: 25px;
	margin-top: auto; /* Push the footer to the bottom */
	margin-bottom: 0px;
}

	.footer-basic p {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 0.85em;
		color: #ffffff;
		margin: 0;
	}

		.footer-basic p a {
			color: #ffffff;
			text-decoration: underline;
			font-weight: bold;
			margin: 0;
		}

	.footer-basic a:hover {
		color: #e6c3c3;
		margin: 0;
		font-weight: bold;
		text-decoration: underline;
	}

	.footer-basic p .footer-links {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 0.95em;
		list-style: none;
		font-weight: bold;
		color: #ffffff;
		padding: 35px 0 23px;
		margin: 0;
	}

		.footer-basic p .footer-links a {
			display: inline-block;
			color: inherit;
			font-weight: bold;
		}

			.footer-basic p .footer-links a:hover {
				display: inline-block;
				color: #e6c3c3;
				font-weight: bold;
			}

.version-text {
	font-size: small;
	margin: 0;
	position: fixed; /* Fixes it relative to the viewport */
	right: 10px; /* Distance from the right edge of the screen */
	bottom: 10px; /* Distance from the bottom edge of the screen */
	color: var(--text-color, antiquewhite);
	z-index: 10; /* Ensures it sits above other elements */
}

/* Responsive styles */
@media (max-width: 600px) {
	.footer-basic-centered {
		padding: 35px;
	}

		.footer-basic-centered .footer-company-motto {
			font-size: 18px;
		}

		.footer-basic-centered .footer-company-name {
			font-size: 12px;
		}

		.footer-basic-centered .footer-links {
			font-size: 12px;
			padding: 25px 0 20px;
		}

			.footer-basic-centered .footer-links a {
				line-height: 1.8;
			}
}
