/* background color */
body {
	background-color: #1188bb;
	background-color: #232323;
	color: #ffffff;
}

a {
  color: #ffc107;
  text-decoration: none;
}

a:visited {
  color: #ffc107;
}

/* orange color heading */
h1 {
	font-family: Arial, sans-serif;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: #ff6f00;
}

/* game box image size */
img {
  height: 64px;
  width:  64px;
}

.Cell {
	white-space: nowrap;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	display: table-cell;
	border-width: thin;
	border-style: none;
	vertical-align: bottom;
}

.Cell h3 {
  margin: 5;
}

#colGames {
  text-align: left;
}

#colSuggestion {
  text-align: left;
  width: 100%;
}

.tr-highlight {
  transition: background-color 0.3s ease;
}

.tr-highlight:hover {
  background-color: #929292;
}

input[type='text'],
select {
	width: 50px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

button {
	padding: 8px 16px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: #45a049;
}

legend {
	font-size: 16px;
	font-weight: bold;
	color: #ffc107;
	text-transform: uppercase;
	margin-bottom: 10px;
	border: none;
	border-bottom: 2px solid #ffc107;
	padding-bottom: 5px;
}

fieldset {
	border: none;
}

Headers {
  background-color: #3498db;
  color: #fff;
  font-weight: bold;
  padding: 10px;
}

/* Dropdown Button */
.dropbtn {
	padding: 8px 16px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  color: black; /* Set text color to black */
  text-align: left; /* Left-justify text */
}

/* Show the dropdown menu */
.dropdown-content.show {
  display: block;
}
