#user-guesses ul {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
#user-guesses ul li {
	background: var(--light);
	border: 1px solid var(--dark);
	color: dark;
	line-height: 1.0;
	list-style-type: none;
	margin-bottom: 1.000rem;
	padding: 0.500rem 1.000rem;
	width: calc(100% / 3 - 1.500rem);
}
#roster-daily-table-wrapper {
  overflow-x: scroll; /* Enable horizontal scroll */
  position: relative;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  width: 100%;
}
table#roster-daily {
	border: 1px solid var(--light-gray);
	border-radius: 0.500rem;
	border-spacing: 0;
	font-size: 0.750rem;
	line-height: 1.1;
	overflow: hidden;
	width: 100%;
}
/* Table Header */
table#roster-daily tbody tr:nth-of-type(1) {
	background: var(--lightest-gray);
	border-bottom: 1px solid var(--light-gray);
	color: var(--dark);
	font-weight: 700;
}
table#roster-daily tbody tr th {
	border-bottom: 1px solid var(--light-gray);
	border-right: 1px solid var(--light-gray);
	text-align: left;
}
table#roster-daily tbody tr th:last-of-type {
	border-right: 0;
}
/* General Table Cells */
table#roster-daily tbody tr td {
	border-bottom: 1px solid var(--light-gray);
	border-right: 1px solid var(--light-gray);
}
table#roster-daily tbody tr td:last-of-type {
	border-right: 0;
}
table#roster-daily tbody tr:last-of-type td {
	border-bottom: 0;
}
table#roster-daily tbody tr td:nth-of-type(1),
table#roster-daily tbody tr td:nth-of-type(3),
table#roster-daily tbody tr td:nth-of-type(7) {
	text-align: center;
}
table#roster-daily tbody tr td:nth-of-type(4),
table#roster-daily tbody tr td:nth-of-type(5),
table#roster-daily tbody tr td:nth-of-type(8) {
	text-align: right;
}
table#roster-daily tbody tr th:nth-of-type(6),
table#roster-daily tbody tr td:nth-of-type(6) {
	display: none;
}
table#roster-daily th,
table#roster-daily td {
	min-width: 2.000rem;
}
table#roster-daily th {
	padding: 0.675rem 0.300rem;
}
table#roster-daily td {
	padding: 0.375rem 0.300rem;
}
table#roster-daily td img {
	height: 18px;
	margin: 0 auto;
	width: 18px;
}
#user-guess-triggers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
#user-guess-triggers .guess-trigger {
  align-content: center;
  align-items: center;
  border: 1px solid var(--light-gray);
  border-radius: 0.500rem;
  cursor: pointer;
  display: flex;
  font-size: 0.900rem;
  height: 2.500rem;
  justify-content: flex-start;
  line-height: 1;
  margin: 0 0 1.500rem;
  padding: 0.500rem 0.6750rem;
  width: calc(100% / 3 - 1.000rem);
}
#user-guess-triggers .guess-trigger:hover {
  border-color: var(--dark);
}
#user-guess-triggers .guess-trigger.active,
#user-guess-triggers .guess-trigger.correct,
#user-guess-triggers .guess-trigger.incorrect {
 color: var(--light);
}
#user-guess-triggers .guess-trigger.active {
 background: var(--dark); 
}
#user-guess-triggers .guess-trigger.correct {
	border-color: var(--green);
	background: var(--green);
}
#user-guess-triggers .guess-trigger.incorrect {
	border-color: var(--red);
	background: var(--red);
}
#user-guess-triggers .guess-trigger.guessed {
	cursor: not-allowed;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
#user-guess-triggers .guess-trigger.guessed svg {
	height: 1.250rem;
	width: 1.250rem;
}
#user-guess-triggers .guess-trigger.guessed svg path {
	fill: var(--light);
}
#user-guess-targets {
  display: flex;
  height: 6.000rem;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
#user-guess-targets .guess {
  margin: 0 auto;
  opacity: 0;
  position: absolute;
  top: 1.500rem;
  transition: opacity 200ms ease;
  width: 40.000rem;
  z-index: -1;
}
#user-guess-targets .guess.active {
  opacity: 1.0;
  z-index: 98;
}
#user-guess-targets .guess .guess-container {
  align-items: center;
  display: flex;
  position: relative;
}
#user-guess-targets .guess svg {
  bottom: 0;
  height: 1.250rem;
  left: 0.500rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 1.250rem;
}
#user-guess-targets .guess svg path {
  fill: var(--gray);
}
.guess-answers-container {
  background: var(--light);
  border-radius: 0.500rem;
  display: none;
  margin-top: -3.000rem;
  overflow: hidden;
  padding-top: 3.000rem;
}
.guess-answers-container button {
  height: 2.250rem;
  width: 4.500rem;
}
.guess-answers-container ul {
  border-top: 1px solid var(--light-gray);
  height: max-content;
  margin: 0;
  max-height: 20.000rem;
  overflow-y: scroll;
  padding: 0.500rem 0 0;
}
.guess-answers-container ul li {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 0.900rem;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1.0;
  padding: 0.750rem 0.500rem;
}
.guess-answers-container ul li.selected {
  background: var(--lightest-gray);
}
.guess-answers-container ul li .team-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.guess-answers-container ul li .team-wrapper span.team-name {
  margin-bottom: 0.375rem;
}
.guess-answers-container ul li .team-wrapper span.team-era {
  color: var(--gray);
  font-size: 0.800rem;
  font-weight: 400;
}
#teams-list {
  display: none;
}
@media only screen and (min-width: 992px) {
}
@media only screen and (max-width: 991px) {
	#user-guess-targets .guess {
		width: 100%;
	}
}