:root {
	--yellow:         240, 183,  18;
	--red:            230,  60,  38;
	--green:          123, 210,  30;
	--blue:            80, 170, 255;
	--light-gray:     200, 200, 200;
	--dark-gray:       35,  35,  35;
	--very-dark-gray:  25,  25,  25;
	--very-very-dark-gray:  10,  10,  10;
}
body {
	background-color: rgb(var(--dark-gray));
	font-family: Ubuntu, Trebuchet MS, Verdana, sans-serif;
	margin: 0;
}

body, table { font-size: 14pt; color: rgb(200, 200, 200); }

.accent1 { color: rgb(var(--yellow)); font-family: Ubuntu, Trebuchet MS, Verdana, sans-serif; }

.bodyWrapper {
	background-image: linear-gradient(to bottom, rgb(var(--very-dark-gray)) 32px, rgb(var(--very-very-dark-gray)) 32px, rgba(0,0,0,0) 42px);
	background-size: 100px 100px;
	background-repeat: repeat-x;
	overflow-x:hidden;
}

.headerBar {
	width: calc(100% - 32px);
	height: 32px;
	padding-left: 16px;
	padding-right: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

.headerBarIcon { height:24px; width:24px; margin-left:6px;margin-right:6px;}
.headerBarRight { display: flex; height: 100%; align-items: center; justify-content: flex-end; }
.headerBarHomeImage { height: 46px; width: auto; margin-right: 6px; }

.mainColumn {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-bottom: 16px;
}

.mainColumnHeading { display: inline-block; font-family: Ubuntu Condensed; font-size: 24pt; font-weight: normal; margin-top:8px;margin-bottom:8px;}
.mainColumnBody { padding-top: 4px; paddin-bottom: 8px; padding-left: 12px; padding-right: 12px;}
.bodyHeader { text-align: center; font-size: 20pt; }

#canvas { -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; }
.canvasContainer { margin-top: 12px; margin-bottom: 12px; }

.emboss {
	border-radius: 12px;
	background-color: rgb(var(--dark-gray));

	box-shadow:         -3px -3px 6px rgba(100, 100, 100, 1), 3px 3px 6px rgba(0, 0, 0, 1);
	-webkit-box-shadow: -1.5px -1.5px 3px rgba(100, 100, 100, 1), 1.5px 1.5px 3px rgba(0, 0, 0, 1);
	-moz-box-shadow:    -3px -3px 6px rgba(100, 100, 100, 1), 3px 3px 6px rgba(0, 0, 0, 1);

	padding: 8px;
	margin: 4px;
}

.deboss {
	border-radius: 12px;

	box-shadow:         inset -2px -2px 4px rgba(80, 80, 80, 1), inset 2px 2px 4px rgba(0, 0, 0, 1), 1px 1px 2px rgba(80, 80, 80, 1), -1px -1px 2px rgba(0, 0, 0, 1);
	-webkit-box-shadow: inset -2px -2px 4px rgba(80, 80, 80, 1), inset 2px 2px 4px rgba(0, 0, 0, 1), 1px 1px 2px rgba(80, 80, 80, 1), -1px -1px 2px rgba(0, 0, 0, 1);
	-moz-box-shadow:    inset -2px -2px 4px rgba(80, 80, 80, 1), inset 2px 2px 4px rgba(0, 0, 0, 1), 1px 1px 2px rgba(80, 80, 80, 1), -1px -1px 2px rgba(0, 0, 0, 1);

	padding: 8px;
	margin: 4px;
}

.buttonType1 {
	width: 200px;
	font-size: 17pt;

	text-decoration: none;

	border: 2px solid;
	border-radius: 24px;

	display: flex;
	align-items:center;
	justify-content: center;
	margin: 2px;

}

.buttonSmall {
        height: 28px;
        width: 128px;
        font-size: 14pt;

        text-decoration: none;

        border: 2px solid;
        border-radius: 24px;

        display: flex;
        align-items:center;
        justify-content:center;
        margin: 2px;

}

.buttonHeaderBar {
    height: 100%;
    width: 96px;
    font-size: 12pt;
    
    text-decoration: none;
    
    border: 0px solid;
    
    display: flex;
    align-items:center;
    justify-content:center;
    
}

.buttonToggle {
    font-size:15pt;
    text-decoration: none;
    
    border: 0px solid;
    
    display: flex;
    align-items:center;
    justify-content:center;
    
}

.buttonGray         { color: rgb(var(--light-gray)); background-color: rgba(0, 0, 0, 0);       border-color: rgb(var(--light-gray)); }
.buttonGray:hover   { color: rgb(30, 30, 30);        background-color: rgb(var(--light-gray)); border-color: rgb(var(--light-gray)); }
.buttonYellow       { color: rgb(var(--yellow));     background-color: rgba(0, 0, 0, 0);       border-color: rgb(var(--yellow)); }
.buttonYellow:hover { color: rgb(30, 30, 30);        background-color: rgb(var(--yellow));     border-color: rgb(var(--yellow)); }

.inputType1 {
    border-right: none;
    border-top: none;
    border-left: none;
    background-color: transparent;
    outline: none;
    color: rgb(var(--light-gray));
    caret-color: rgb(var(--light-gray));
    width:75px;
}

.labelType1 {
    display: inline-block;
    width:200px;
}
