@import 'background.css';

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  height: 100vh;
  color: #333;

  /* Turned off flex for mobile viewport non scrolling */
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.mainContent {
  /* width: 100%; */
  text-align: left;
  padding: 10px;
  padding-top: 40px;
  font-size: 30px;
  line-height: 1;
  width: auto;
  color: white;
  text-decoration: none;
}

/* .donation {
  width: 80%;
  text-align: left;
  padding: 5px;
  font-size: 20px;
  line-height: 1.1;
  width: auto;
  color: rgba(243, 248, 247, 0.652);
  text-decoration: none;
} */

.gameText {
  width: 80%;
  text-align: left;
  padding: 5px;
  font-size: 20px;
  line-height: 1.1;
  width: auto;
  color: rgba(243, 248, 247, 0.652);
  text-decoration: none;
}

.userSearch {
  width: 100%;
  text-align: left;
  padding: 5px;
  font-size: 15px;
  line-height: 1;
  width: auto;
  color: rgba(243, 248, 247, 0.652);
  text-decoration: none;
}

.tableContent {
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 1;
}

/* .statusButton {
  border-radius: 50%;
} */

td {
  padding: 0px 5px 5px 5px;
}

th {
  padding: 5px 10px 5px 5px;
  color: rgba(0, 0, 0, 0.64);
  font-size: 20px;
}

tr {
  color: white;
}

p {
  font-size: 1.8rem;
}

.hidden {
  display: none;
}

/* Round Profile Images */
.circular--portrait {
  position: relative;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
}
.circular--portrait img {
  width: 100%;
  height: auto;
}

/* For Aligning Profile Next to Score */
.flex-container {
  display: flex;
  align-items: center;
}

.flex-child {
  flex: none;
  /* flex: 0.5; */
  /* border: 2px solid yellow; */
  text-align: center;
  line-height: 1.3;
  justify-content: center;
  align-items: center;
}

.flex-child:first-child {
  margin-right: 30px;
}

/* Buttons for Game Play */
.playStatusButton {
  appearance: none;
  background-color: #2ea44f;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.playStatusButton:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.playStatusButton:hover {
  background-color: #2c974b;
}

.playStatusButton:focus {
  box-shadow: rgba(46, 164, 79, 0.4) 0 0 0 3px;
  outline: none;
}

.playStatusButton:disabled {
  background-color: #94d3a2;
  border-color: rgba(27, 31, 35, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: default;
}

.playStatusButton:active {
  background-color: #298e46;
  box-shadow: rgba(20, 70, 32, 0.2) 0 1px 0 inset;
}

.waitStatusButton {
  appearance: none;
  background-color: #369ae7;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.waitStatusButton:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.waitStatusButton:hover {
  background-color: #3689e7;
}

.waitStatusButton:focus {
  box-shadow: rgba(46, 164, 79, 0.4) 0 0 0 3px;
  outline: none;
}

.waitStatusButton:disabled {
  background-color: #3689e7;
  border-color: rgba(27, 31, 35, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: default;
}

.waitStatusButton:active {
  background-color: #3689e7;
  box-shadow: rgba(20, 70, 32, 0.2) 0 1px 0 inset;
}

/* Define a General Button CSS  */
.generalButton {
  appearance: none;
  background-color: #6a7074;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

/* Flashing Text */
.highScoreToday {
  /* background-color: #2c0101; */
  font-size: 26px;
  font-family: 'Play', sans-serif;
}
.neon {
  margin: 1.2rem auto;
  animation: neon 2s ease infinite;
}
@keyframes neon {
  0%,
  100% {
    text-shadow: 0 0 10px #ef00e3a8, 0 0 20px #ef00e3a8, 0 0 20px #ef00e3a8,
      0 0 20px #ef00e3a8, 0 0 2px #fed128, 2px 2px 2px #806914;
    color: #f5efcb;
  }
  50% {
    text-shadow: 0 0 2px #800e0b, 0 0 5px #800e0b, 0 0 5px #800e0b,
      0 0 5px #800e0b, 0 0 2px #800e0b, 4px 4px 2px #40340a;
    color: #eda0d3;
  }
}
