.body {
	/* background-color: lightGray; */
}



/*	Establish CSS grid basics */
.wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 188px 300px 150px 120px;
    grid-template-rows: auto auto;
    background-color: #fff;
    color: #444;
    grid-row-gap: 0px;
/*    justify-content: center;
    align-content: center;
*/
	place-content: center;
}

 .box {
    background-color: #444;
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    font-size: 150%;

  }

/*	Styling for the title */
.board-title {
	grid-column: 1 / -1;
	grid-row: 1;
	font-size: 1.5em;
	font-weight: default;
	text-align: center;
	padding-top: .25em;
	padding-bottom: .25em;
}


/*	Styling for the Bing Board.  Get colors from
	the theme-colors.
*/
.bingo-board {
	grid-column: 1 / -1;
	grid-row 2;
}

.bingo-board-line {
}

.bingo-board-line-first {
}

.bingo-board-line-last {
	padding-bottom: 0.3em;
	margin-bottom: 0.3em;
}


/* 	Color for the word "BINGO" in the ball display
	Get colors from the .theme-colors class
*/
.bingo {
	font-family: "Times New Roman", Times, serif;	
	font-size: 1.8em;
	font-weight: bold;
	text-align: center;
	padding-top: .3em;
	padding-bottom: .3em;
	width: 60px;
	display: inline-block;
}

.ball-number {
	width: 40px;
	padding-top: .3em;
	padding-bottom: .3em;
	padding-right: 0;
	padding-left: 0;
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: 3px;
	margin:right: 3px;
	font-size: 1.25em;
	border: solid 2px;
	text-align: center;
}

.ball-selected {
	background-color: darkBlue;
	color: white;
}

.ball-just-selected {
	background-color: green;
	color: white;
}

.ball-unselected {
	background-color: white;
	color: darkBlue;
}

.ball-last-selected {
	background-color: red;
	color:white;
}


/*	Stylings for the Called number lock */
.called-block {
	grid-column: 2 / 3;
	grid-row: 3;
}


.called {
	font-family: "Times New Roman", Times, serif;
	font-size: 6em;
	padding-top: .2em;
	padding-bottom: .2em;
	padding-right: 5px;
	padding-left: 5px;
	margin-left: 0px;
	margin-top: 0px;
	display: block;
	vertical-align: top; 
	text-align: center;
}


/*	Stylings for the Recently Called block */
.recent-calls-block {
	grid-column: 3 / 4;
	grid-row: 3;
}

.recent-calls-label {
/*	background-color: lightGray;
	color: black;
*/
	padding-top: 1px;
	padding-bottom: 1px;
	margin-left: 0px;
	margin-top: 0px;
	display: block;
	text-align: center;
	border: 1px solid black;
	border-top: 0;
	border-right: 0;
	border-left: 0;
}

.recent-calls {
/*	background-color: lightGray;
	color: darkRed;
*/
	font-family: "Times New Roman", Times, serif;
	font-size: 2em;
	padding-top: 0px;
	padding-bottom: 0.2em;
	padding-right: 20px;
	padding-left: 20px;
	margin-left: 0px;
	margin-top: 0px;
	display: block;
	text-align: center;
}


/*	Styling for the Bingo Card Pattern */
.pattern-board {
	grid-column: 1 / 2;
	grid-row: 3;
}

.pattern {
	border-style: solid;
	border-color: black;
	border-collapse: collapse;
	padding-top: 5;
	padding-left: 5;
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 0;
	margin-right: 0;
	border-width: thin;
	font-size: 2em;
	height: 1em;
	width: 1em;
	display: inline-block;
}

.pattern-selected {
	background-color: darkGray;
	border-color: white;
	filter: invert(100%);
}

img#pattern-star {
	height: 0.9em;
	width: 0.9em;
/*	vertical-align: top; */
	text-align: center;
	padding-left: 0.05em;
	padding-right: 0em;
	margin-bottom: 4px; 
	transform: translateY(.05em);
}

/*
pattern-star {
	transform: translateY(-10px);
}
*/

.pattern-list {
	text-align: center;
	width: 100%;
	margin: 0;
	border-style: none;
	
}

pattern-list-element {
	border-style: none;
}



/*	Styling for the buttons */
.button-block {
	grid-column: 4 / -1;
	grid-row: 3;
}

.btn {
	font-size: .9em;
	padding-bottom: 3px;
	padding-top: 3px;
	border-radius: 3px;
	text-align: center;
	width: 8em;
}

.vbtn {
	vertical-align: middle;
	margin-top: 1px;
	margin-bottom: 3px;
	display: block;
}

.bottom-col {
}

.bottom-button {
}


.zoom-button {
}

.full-button {
}


.back-button.disabled {
	opacity: 0%;
}

.back-button {
	background-color: gray;
	color: white;
	margin-left: 2em;
}

.next-button.disabled {
	opacity: 0%;
}

.next-button {
	background-color: gray;
	color: white;
	margin-left: 1em;
}

.clear-button {
	background-color: red;
	color: white; 
	padding-top: .6em;
	padding-bottom: .6em;
}



/*	Overwride the radius so the buttons on the msc confirm dialog
	dont' slook so rounded...  Buttons, not lozenges. */
.msc-confirm.msc-action button {
	border-radius: 3px;	
}

