* {
  box-sizing: border-box;
  font-family: monospace;
  font-size: 18px;
}

body {
  margin: 0;
  overflow: auto;
  background: #eae3de;
  color: #1b1d14;
}

.nyt-contain {
  width: 500px;
  margin: 0 auto;
  max-width: 90%;
}

.score-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0px;
}

input,
textarea {
  padding: 10px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.submit {
  padding: 15px;
  background: #ccc;
  width: max-content;
}

ul {
  padding: 0px;
  list-style: none;
}

.score-li {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px 0px !important;
  border-top: 1px solid #ccc;
  text-transform: uppercase;
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  font-size: 10px;
  padding: 6px;
  background: #1b1d1420;
}

.dot.active {
  background: #bada55;
}

.score {
  text-align: right;
}

.date {
  color: #1b1d1440;
  padding: 20px 0px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.popup-bg {
  background: #00000080 !important;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}

.popup-content {
  background: #ffffff !important;
  display: flex;
  width: 300px;
  max-width: 80%;
  height: auto;
  padding: 30px;
  z-index: 99;
  flex-direction: column;
  gap: 30px;
}

#page-transition-overlay {
  display: none !important;
}
