/* Bunny and Reversi API - CSS */

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
	color: #000000;
  background: #ffffff;
}

.container {
  position: relative;
  margin: 0 auto;
  width: 80%;
  height: auto;
  overflow: hidden;
}

.br-form {
  display: grid;
	grid-template-columns: [labels] auto [controls] 1fr;
	grid-auto-flow: row;
	grid-gap: .8em;
  background: #eee;
  padding: 1.2em;
  margin: 0px;
}

.br-form > label {
	grid-column: labels;
	grid-row: auto;
}

.br-form > input, .br-form > button {
	grid-column: controls;
	grid-row: auto;
  border: thin solid gray;
  padding: 1em;
}

.br-debug-info {
  background: lightyellow;
}

table {
  display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

table, th, td {
  border-collapse: collapse;
  border: 1px solid #ccc;
/*line-height: 1.5;*/
  line-height: 0.5;
}

table th {
  width: 150px;
  padding: 5px;
  font-weight: bold;
  vertical-align: top;
  background: #3f3f3f;
  color: #ffffff;
}

table td {
  width: 350px;
  padding: 5px;
  vertical-align: top;
}

tr:nth-child(even) {
  background: #d9d9d9;
}

.data-table {
	font-size: xx-small;
}

.br-no-dec-link {
  text-decoration: none;
  color: #c0c0c0;
}

.br-no-dec-link:link {
  text-decoration: none;
  color: #c0c0c0;
}

.br-no-dec-link:visited {
  text-decoration: none;
  color: #c0c0c0;
}

.br-no-dec-link:hover {
  text-decoration: none;
  color: #c0c0c0;
}

.br-no-dec-link:active {
  text-decoration: none;
  color: #808080;
}
