.error {
  color: #dc3545;
}

.primary {
  color: #007bff;
}

.secondary {
  color: #6c757d;
}

.success {
  color: #28a745;
}

body {
  background-color: #f0f8ff;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  margin: 0;
  text-align: center;
  align-content: flex-start;
  flex-flow: column wrap;
}

header {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: row;
}
header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  width: 50%;
}
header ul li a {
  display: block;
  font-size: larger;
  text-decoration: none;
  padding: 8px;
}
header ul .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
header ul .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
header ul .btn.btn-logout:hover {
  background-color: #0056b3;
}
header ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: calc(50% - 40px);
  display: flex;
  flex-direction: row-reverse;
}
header ol li a {
  display: block;
  padding: 8px;
}
header ol .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
header ol .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
header ol .btn.btn-logout:hover {
  background-color: #0056b3;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}

.container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 80dvw;
  height: 80dvh;
  margin: 0px auto;
  left: 0;
  top: 80px;
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.container #game {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
.container #game .tile {
  background-color: lightblue;
  border-style: solid;
  border-color: black;
  box-sizing: border-box;
  border-width: 1px;
}
.container #game .col {
  width: 100%;
  height: 100%;
}
.container #game .card {
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: right;
}
.container #game .row {
  display: flex;
}
.container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.container ul li a {
  display: block;
  font-size: larger;
  text-decoration: none;
  padding: 8px;
}
.container ul .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.container ul .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.container ul .btn.btn-logout:hover {
  background-color: #0056b3;
}
.container h1 {
  font-size: 2.5rem;
  color: #333;
}
.container p {
  font-size: 2.5rem;
  color: #333;
}
.container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.container .btn.btn-login:hover {
  background-color: #0056b3;
}
.container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.container .btn.btn-register:hover {
  background-color: #218838;
}

.nextturn {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 80dvw;
  top: calc(80px + 80dvh);
  margin: 0px auto;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.nextturn ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.nextturn ul li a {
  display: block;
  font-size: larger;
  text-decoration: none;
  padding: 8px;
}
.nextturn ul .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nextturn ul .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.nextturn ul .btn.btn-logout:hover {
  background-color: #0056b3;
}
.nextturn h1 {
  font-size: 2.5rem;
  color: #333;
}
.nextturn p {
  font-size: 2.5rem;
  color: #333;
}
.nextturn .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.nextturn .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.nextturn .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nextturn .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.nextturn .btn.btn-login:hover {
  background-color: #0056b3;
}
.nextturn .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.nextturn .btn.btn-logout:hover {
  background-color: #0056b3;
}
.nextturn .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.nextturn .btn.btn-register:hover {
  background-color: #218838;
}

.upper-left-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 49%;
  height: calc(50dvh - 100px);
  margin: 0px auto;
  left: 0;
  top: 100px;
  position: absolute;
}
.upper-left-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.upper-left-container p {
  font-size: 2.5rem;
  color: #333;
}
.upper-left-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.upper-left-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.upper-left-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.upper-left-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.upper-left-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.upper-left-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.upper-left-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.upper-left-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.upper-left-container .btn.btn-register:hover {
  background-color: #218838;
}

.lower-left-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 49%;
  height: calc(50dvh - 100px);
  margin: 0px auto;
  left: 0;
  bottom: 0;
  position: absolute;
}
.lower-left-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.lower-left-container p {
  font-size: 2.5rem;
  color: #333;
}
.lower-left-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.lower-left-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.lower-left-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.lower-left-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.lower-left-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.lower-left-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.lower-left-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.lower-left-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.lower-left-container .btn.btn-register:hover {
  background-color: #218838;
}

.upper-right-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 49%;
  height: calc(50dvh - 100px);
  margin: 0px auto;
  right: 0;
  top: 100px;
  position: absolute;
}
.upper-right-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.upper-right-container p {
  font-size: 2.5rem;
  color: #333;
}
.upper-right-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.upper-right-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.upper-right-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.upper-right-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.upper-right-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.upper-right-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.upper-right-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.upper-right-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.upper-right-container .btn.btn-register:hover {
  background-color: #218838;
}

.lower-right-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 49%;
  height: calc(50dvh - 100px);
  margin: 0px auto;
  right: 0;
  bottom: 0;
  position: absolute;
}
.spellhovered {
  background-color: #ff0000 !important;
}
.lower-right-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.lower-right-container p {
  font-size: 2.5rem;
  color: #333;
}
.lower-right-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.lower-right-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.lower-right-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.lower-right-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.lower-right-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.lower-right-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.lower-right-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.lower-right-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.lower-right-container .btn.btn-register:hover {
  background-color: #218838;
}

.upper-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 100%;
  height: calc(50dvh - 100px);
  margin: 0px auto;
  right: 0;
  top: 100px;
  position: absolute;
}
.upper-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.upper-container ul li a {
  display: block;
  font-size: larger;
  text-decoration: none;
  padding: 8px;
}
.upper-container ul .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.upper-container ul .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.upper-container ul .btn.btn-logout:hover {
  background-color: #0056b3;
}
.upper-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.upper-container p {
  font-size: 2.5rem;
  color: #333;
}
.upper-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.upper-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.upper-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.upper-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.upper-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.upper-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.upper-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.upper-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.upper-container .btn.btn-register:hover {
  background-color: #218838;
}

.gamestate {
  width: 100%;
  display: flex;
}

.gamelabel {
  width: 50%;
}

.gamevalue {
  width: 50%;
}

.lower-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 100%;
  height: calc(50dvh - 100px);
  margin: 0px auto;
  right: 0;
  bottom: 0;
  position: absolute;
}
.lower-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.lower-container p {
  font-size: 2.5rem;
  color: #333;
}
.lower-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.lower-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.lower-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.lower-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.lower-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.lower-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.lower-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.lower-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.lower-container .btn.btn-register:hover {
  background-color: #218838;
}

.stats-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 20dvw;
  height: 25dvh;
  margin: 0px auto;
  right: 0;
  top: 80px;
  position: absolute;
  overflow: scroll;
}
.stats-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 2rem;
}
.stats-container ul li a {
  display: block;
  font-size: larger;
  text-decoration: none;
  padding: 8px;
}
.stats-container ul .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.stats-container ul .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.stats-container ul .btn.btn-logout:hover {
  background-color: #0056b3;
}
.stats-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.stats-container p {
  font-size: 2.5rem;
  color: #333;
}
.stats-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.stats-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.stats-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.stats-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.stats-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.stats-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.stats-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.stats-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.stats-container .btn.btn-register:hover {
  background-color: #218838;
}

#message-form {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: calc(80px + 25dvh);
  padding: 0px;
  width: 20dvw;
  height: 5dvh;
  margin: 0px auto;
  right: 0;
  position: absolute;
}
#message-form .input-field {
  width: 90%;
  padding: 5px;
  border: 1px solid #333;
  font-size: 2rem;
}
#message-form .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.game-container {
  background-color: #f0f8ff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  width: 20dvw;
  margin: 0px auto;
  right: 0;
  top: calc(80px + 30dvh);
  bottom: 0;
  position: absolute;
  overflow: scroll;
}
.game-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 2rem;
}
.game-container ul li a {
  display: block;
  font-size: larger;
  text-decoration: none;
  padding: 8px;
}
.game-container ul .btn {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.game-container ul .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.game-container ul .btn.btn-logout:hover {
  background-color: #0056b3;
}
.game-container h1 {
  font-size: 2.5rem;
  color: #333;
}
.game-container p {
  font-size: 2.5rem;
  color: #333;
}
.game-container .input-field {
  width: 90%;
  padding: 10px;
  border: 1px solid #333;
  font-size: 2rem;
}
.game-container .input-field:focus {
  border-color: #007bff;
  outline: none;
}
.game-container .btn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.game-container .btn.btn-login {
  background-color: #007bff;
  color: white;
}
.game-container .btn.btn-login:hover {
  background-color: #0056b3;
}
.game-container .btn.btn-logout {
  background-color: #007bff;
  color: white;
}
.game-container .btn.btn-logout:hover {
  background-color: #0056b3;
}
.game-container .btn.btn-register {
  background-color: #28a745;
  color: white;
}
.game-container .btn.btn-register:hover {
  background-color: #218838;
}

.dropbtn {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  width: 100%;
  height: 100%;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  cursor: pointer;
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: rgba(0, 0, 0, 0.1);
}

.highlighted {
  cursor: pointer;
  background-color: #999 !important;
}

#game-summary {
  left: 25dvw;
  right: 25dvw;
  top: 25dvh;
  bottom: 25dvh;
  background-color: #bbb;
  position: absolute;
}
#game-summary #game-name {
  color: black;
}
#game-summary #game-score {
  color: black;
}

.show {
  display: block;
}

.hidden {
  display: none;
}

.pollen {
  height: 10px;
  width: 10px;
  background-color: #ff0;
  border-radius: 50%;
  display: inline-block;
}/*# sourceMappingURL=styles.css.map */