﻿html, body {
	font-family: 'Assistant', sans-serif;
	background-color: rgba(251, 251, 251, 0.94);
}

app {
	position: relative;
	display: flex;
	flex-direction: column;
}

.main {
	padding: 0;
	margin: 0;
	flex: 1;
}

.content {
	background-color: #f0f0f3;
	color: #002856;
	overflow: hidden;
	min-height: calc(100vh - 100px);
}

.section-heading {
	text-align: center;
	letter-spacing: 1.8px
}


.double-xtra-large-font {
	font-size: xx-large;
}


.xtra-large-font {
	font-size: x-large;
}

#chatButton {
	display: block;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	border: none;
	outline: none;
	background-image: linear-gradient(to top, #002856, #002c5e, #003066, #00346f, #003877, #013e82, #02448e, #034a9a, #0654ad, #095fc0, #0c69d3, #0f74e7);
	background-color: #002856;
	color: #ffffff;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 50px 50px 50px 50px;
	transition: width 1s;
	line-height: 50px;
	max-width: 90%;
	font-size: small;
	text-align: center;
	text-decoration: none;
}

	#chatButton:hover {
		background-color: #002856;
		color: #ffffff;
		width: 350px;
		padding: 0px 15px;
	}

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

	#blazor-error-ui .dismiss {
		cursor: pointer;
		position: absolute;
		right: 0.75rem;
		top: 0.5rem;
	}

#validationMessage {
	font-size: 12px;
	margin-bottom: 3px;
	color: red;
}

/* Desktop Styles */
@media (min-width: 767.98px) {
	.small-screen {
		display: none;
	}

	.large-screen {
		display: block;
	}
}

/* Mobile Styles */
@media (max-width: 768px) {
	.small-screen {
		display: block;
	}

	.large-screen {
		display: none;
	}
}

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

#blazor-error-ui .dismiss {
	cursor: pointer;
	position: absolute;
	right: 0.75rem;
	top: 0.5rem;
}
