﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.DivForMaxTextWidth {
	max-width: 900px;
}


.EditTextBox {
	display: block;
	font-family: system-ui, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	padding: 0.375em;
	background-color: #e9f4ff;
	color: #000;
	border: 2px solid #464b50;
	border-radius: 0px;
	caret-color: #d13438;
	margin: 5px 5px;
	width: 100%;
}
	.EditTextBox::selection {
		background-color: #3390ff;
		color: #FFF;
	}
	.EditTextBox::placeholder {
		color: #a7b3be;
		opacity: 1;
	}
	.EditTextBox:focus {
		color: #000;
		background-color: #ddedff;
		border-color: #449cfc;
		outline: 0;
		box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
	}
	.EditTextBox:disabled {
		background-color: #e9ecef;
		color: #808080;
		border-color: #AAAAAA;
	}

.StandardButton {
	display: inline-block;
	box-sizing: border-box;
	font-family: system-ui, sans-serif;
	font-size: 16px;
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
	text-decoration: none;
	color: #fff;
	background-color: #1b6ec2;
	border: 3px outset #007bff;
	border-radius: 0.5em;
	text-align: center;
	vertical-align: middle;
	padding: 0.375em 1.3em;
	user-select: none;
	box-shadow: 3px 3px 5px #CCC;
	margin: 5px 5px;
}
	.StandardButton:hover {
		color: #fff;
		background-color: #207ede;
		border-color: #3c9aff;
		text-decoration: none;
	}
	.StandardButton:focus {
		outline: 0;
		box-shadow: 0 0 0 3px rgba(38, 143, 255, 0.5);
	}
	.StandardButton:active {
		border-style: inset;
	}
	.StandardButton:disabled {
		color: #808080;
		background-color: #CCCCCC;
		border-color: #AAAAAA;
		border-style: solid;
		box-shadow: none;
	}

.ItemChooserButton {
	display: inline-block;
	box-sizing: border-box;
	font-family: system-ui, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	text-decoration: none;
	background-color: #EEE;
	color: #000;
	border: 3px outset #CCC;
	border-radius: 0.3em;
	padding: 0.1em 0.2em;
	box-shadow: 3px 3px 5px #CCC;
	margin: 5px 5px;
}
	.ItemChooserButton:focus {
		border-color: #449cfc;
		outline: 0;
		box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
	}
	.ItemChooserButton:disabled {
		background-color: #e9ecef;
		color: #808080;
		border-color: #AAAAAA;
	}

.FormValueRejectionMessage {
	color: #DC3545;
	font-weight: bold;
}
.FormValueRejectionMessageCell {
	color: #DC3545;
	font-weight: bold;
	padding-left: 5px;
}

.FormResultBox_Succeeded {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 15px;
	border-color: #33CC33;
	border-style: solid;
	border-width: 4px;
	border-radius: 8px;
	background-color: #C7FFC4;
	font-weight: bold;
	text-align: center;
	max-width: 550px;
}
.FormResultBox_Failed {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 15px;
	border-color: #cc3b33;
	border-style: solid;
	border-width: 4px;
	border-radius: 8px;
	background-color: #ffcac4;
	font-weight: bold;
	text-align: center;
	max-width: 550px;
}

