body {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;
    height: 100vh;
    overflow: hidden;
    /* background: rgb(0, 5, 20);
    background: linear-gradient(167deg, rgba(0, 5, 20, 1) 0%, rgba(0, 22, 82, 1) 100%); */
    background: #0e0e0e;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.pinBox {
    --width: 296px;
    --height: 74px;
    --spacing: 47px;
    
    display: flex;
    position: relative;
    width: var(--width);
    height: var(--height);
    background-image: url(/assets/line.png); 
  }

.disabled {
  opacity: 0.1;
}

.pinEntry {
  position: absolute;
  padding-left: 21px;
  font-family: courier, monospaced;
  font-size: var(--spacing);
  height: var(--height);
  letter-spacing: var(--spacing);
  background-color: transparent;
  border: 0;
  outline: none;
  clip: rect(0px, calc(var(--width) - 21px), var(--height), 0px);
  color: white;
  text-transform: uppercase;
}

.rotate {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.spinner {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/montserrat-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 10px;
}

.code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game {
  overflow: auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

table {
  text-align: center;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

th {
  padding-left: 30px;
  padding-right: 30px;
}

td {
  padding: 5px;
  border: 1px solid #333333;
  width: 1%;
}

thead {
  font-size: xx-large;
  background-color: #f99e16;
  position: sticky;
  top: 0;
}

th {
  border-bottom: #333333 2px solid;
}

tbody {
  font-size: x-large;
}

tbody tr:nth-child(odd) td{
  background:#111111;
}

tbody tr:nth-child(even) td{
  background:#1a1a1a;
}

.task-row > td{
  color: #ffffff !important;
  background: #111111 !important;
}

.bonus-row > td{
  color: #f99f16;
  background: #1a1a1a !important;
}

.empty-cell {
  background-color: #0e0e0e;
  width: 50px;
}

.current-phase {
  color: #f99f16;
}

.phase {
  color: #f99f16;
}

.current-round {
  color: #f99f16;
}

.wizard-cell {
  padding: 0;
}

.wizard-td {
  border-bottom: none;
  border-top: none;
}