/* ===============================
   EXISTING BUTTON STYLES
================================ */

.result
{
	font-size: 24px;
}

.gc-button-cancel
{
	background-color: red;
	color: white;
	width: 100px;
	height: 32px;
}

.gc-button-submit
{
	background-color: green;
	color: white;
	width: 100px;
	height: 32px;
}

.gc-button
{
	display: flex;
	flex: 0 0 auto;
	gap: 6px;
	height: 32px;
	width: 100px;
	box-sizing: border-box;
	overflow: hidden;
	min-width: 0;
}

.gc-row-1
{
	display: flex;
	gap: 8px;
	box-sizing: border-box;
	margin-bottom: 8px;
}

.gc-row-2
{
	display: flex;
	gap: 8px;
	justify-content: flex-start;
}

.gc-row-3
{
	display: flex;
	gap: 8px;
	box-sizing: border-box;
	margin-top: 8px;
}

.gc-field
{
	display: flex;
	flex: 1 1 auto;
	gap: 6px;
	height: 32px;
	box-sizing: border-box;
	overflow: hidden;
	min-width: 0;
}

.gc-field label
{
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.gc-field input
{
	flex: 1;
	min-width: 0;
	height: 32px;
	box-sizing: border-box;
	padding: 0 8px;
	font-size: 16px;
	line-height: 32px;
	border: 1px solid darkgray;
	background-color: lightgrey;
	color: black;
	border-radius: 0;
}

.gc-field input:focus
{
	outline: none;
	border-color: #1e88e5;
	box-shadow: 0 0 0 2px rgb(30,136,229,0.25);
}
