body
{
	margin: 0 auto;
	padding: 0;
	background: linear-gradient( #bbb, transparent 1px), linear-gradient( 90deg, #bbb, transparent 1px);
	background-size: 15px 15px;
	background-position: center center;
	background-color: #f9f9f9;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}




.button-orange
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding: 5px;
	background-color: #ffcc00;
	background-image: linear-gradient(to bottom right, #fff, #ffcc00);
	color: #000000;
}

.button-blue
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding: 5px;
	background-color: #75c7e2;
	background-image: linear-gradient(to bottom right, #fff, #75c7e2);
	color: #000000;
}


.button-green
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding: 5px;
	background-color: #cce275;
	background-image: linear-gradient(to bottom right, #fff, #cce275);
	color: #000000;
}




.word-letter-box
{
	float: left;
	border: 1px solid #cccccc;
	padding: 5px 10px 5px 10px;
	text-align: center;
	background-color: #fff0b0;
	background-image: linear-gradient(to bottom right, #fff0b0, #ffcc00);
	border-radius: 10px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
}

.word-letter-box-clicked
{
	float: left;
	border: 1px solid #cccccc;
	padding: 5px 10px 5px 10px;
	text-align: center;
	background-color: #fff0b0;
	background-image: linear-gradient(to bottom right, #fff, #cce275);
	border-radius: 10px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
}

.user-temp-word-box
{
	display: none;
	float: top;
	width: fit-content;
	block-size: fit-content;
	border: 1px solid #cccccc;
	margin-top: 10px;
	padding: 5px 10px 5px 10px;
	text-align: center;
	background-color: #cce275;
	background-image: linear-gradient(to bottom right, #fff, #cce275);
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
}

.user-words-container
{
	border: 0px;
	border-top: 2px #000000 solid;
	position: absolute;
	top: 200px;
	--border-radius: 10px;
}

.user-word-box
{
	float: top;
	width: fit-content;
	block-size: fit-content;
	border: 1px solid #cccccc;
	margin-top: 5px;
	padding: 5px 10px 5px 10px;
	text-align: center;
	background-color: #75c7e2;
	background-image: linear-gradient(to bottom right, #fff, #75c7e2);
	cursor: pointer;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
}

.user-stats-box
{
	margin: auto;
	margin-bottom: 10px;
	float: top;
	width: fit-content;
	block-size: fit-content;
	border: 1px solid #cccccc;
	padding: 5px 10px 5px 10px;
	background-color: #75c7e2;
	background-image: linear-gradient(to bottom right, #fff, #75c7e2);
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.user-help-box
{
	margin: auto;
	margin-bottom: 10px;
	float: top;
	width: fit-content;
	block-size: fit-content;
	border: 1px solid #cccccc;
	padding: 5px 10px 5px 10px;
	background-color: #75c7e2;
	background-image: linear-gradient(to bottom right, #fff, #75c7e2);
	border-radius: 10px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
}

.user-settings-box
{
	font-size: 12px;
	font-weight: bold;
	text-align: left;
}





/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #cce275;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: bold;
  width: 65px;
  text-align: center;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #bbd25d;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #97ae39;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: none;
  border-top: none;
}

.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}





/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: auto;
	border: 10px double #888;
	text-align: center;
	vertical-align: middle;
	width: 400px;
	height: 300px;
	position: relative;
}

/* The Close Button */
.close {
	z-index: 1; /* Sit on top */
	border: 4px solid #888;
	background-color: #fefefe;
	color: #aaaaaa;
	float: right;
	font-size: 60px;
	font-weight: bold;
	position: absolute;
	top: -20;
	left: 350;
	width: 60px;
	height: 60px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}