body {
  background-color: auto;
  color: auto;
}

/* board and replay table styles */
.board_td {
      border: 1px solid black;
      border-collapse: collapse;
}

/* board and replay table styles */
.board_table {
      border: 0 solid black;
      border-collapse: collapse;
      width: 95%;
}

/* coloring of logged in user's score on a scoreboard */
.myscore {
  background-color: #ECEFFF;
  color: auto;
}

a:link {
  color: auto;
}

/* visited link */
a:visited {
  color: auto;
}

/* mouse over link */
a:hover {
  color: auto;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: auto;
}

/* header color for user page */
th.user_modeheader { 
  background-color: #CCCCFF; 
  color: #2e2e2e;  
}

/* header color for user page */
th.user_titleeheader {
  background-color: #7498d3;
  color: auto;
}

.active_selector {
  color: grey;
  background-color:transparent; 
  padding:0; 
  border:none; 
  text-decoration:underline; 
  cursor:pointer;
}

.inactive_selector {
  color: black;
  background-color:transparent; 
  padding:0; 
  border:none; 
  text-decoration:underline; 
  cursor:pointer;
}

/* for goals page */

.goalform {
    display:inline;
    margin-bottom: 5px;
}

.goalcontent {
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.goalcollapsible {
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
  border: none;
  text-align: left;
  outline: 1px;
  background-color: lightgrey;
}

.goalcollapsible:before {
  content: '+'; 
  font-family: 'Courier New', monospace;
  font-size: 15px;
  float: left;
  margin-left: 5px;
  margin-right: 5px;
}
.active:before {
  font-family: 'Courier New', monospace;
  content: '-'; /* Unicode character for 'minus' sign (-) */
}

input[type=submit].goalpage {
      margin-bottom: 5px;
}

button.listbutton {
  	color: auto;
	width: 275px;
	background:none;
	padding-left: 7px;
	text-indent: -5px;
	text-align:left;
	border:none;
	cursor:pointer;
	display:inline;
}

div.listdiv {
  display:inline;
  width: 100%;
}

.smalltext {
  font-size: 12px;
}

/* used for tooltips on the stars on User page (and wherever else I want these tooltips) */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px; 
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* for pagehead divs */

div#header {
    clear: both;
	position: relative;
}
div#left {
    float: left;
    width: 40%;
	text-align: left;
	bottom: 0;
	left: 0;
	position: absolute;
}
div#right {
    float: right;
    width: 40%;
	text-align: right;
	bottom: 0;
	right: 0;
	position: absolute;
}
div#middle {
    margin: 0;
	text-align: center;
	font-size: 250%;
}