﻿/*
Blue        #076196
Dark Blue   #043E60
Red         #C10000
Gray        #BFBFBF
Light Gray  #EEEEEE
*/

.LogInAsButton {
	font-size: 9pt;
	height: 31px;
	width: 71px;
	color: white;
	background-color: green;
	border: none;
	border-radius: 5px;
	padding-top: 4px;
	padding-bottom: 5px;
}

	.LogInAsButton:hover {
		cursor: pointer;
		color: yellow;
		font-weight: bold;
	}

#LogInAsOutermostDiv {
	position: sticky;
	top: 0;
	z-index: 1000; /* stay above page content */
	display: none;
	background-color: yellow;
	color: red;
	width: 100%;
	margin: auto;
	text-align: center;
	margin-top: -15px;
	margin-bottom: 10px;
	padding-top: 8px;
	padding-bottom: 10px;
}

#LogInAsInnerDiv {
	display: flex;
	align-items: center; /* ✅ vertical centering */
	gap: 12px; /* spacing between icon, text, button */
	width: 66%;
	margin: auto;
	text-align: center;
}

#LogInAsAlertIcon {
	margin: auto;
	text-align: center;
	font-size: 300%;
	color: red;
}

#LogInAsInstructionsSpan {
	flex: 1;
	white-space: nowrap;
	margin: auto;
	text-align: center;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 130%;
}

#LogInAsUserInfoSpan {
	font-weight: bold;
	font-style: italic;
}

#btnCancelLogInAs {
	white-space: nowrap;
	margin: auto;
	text-align: center;
	height: 33px;
	width: 88px;
	font-size: 115%;
	border-width: 1px;
	border-radius: 6px;
	background-color: red;
	color: white;
	border-color: red;
}

	#btnCancelLogInAs:hover {
		cursor: pointer;
		background-color: white;
		color: red;
	}
