@font-face {
  font-family: "Lato Light";
  src: url("lato-light.svg") format("svg");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "minecraftmedium";
  src: url("minecraft-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
#text {
  font-family: "minecraftmedium";
  color: #ffffff;
  font-size: 3rem;
}

body,
html {
  font-family: "Lato Light", sans-serif;
  font-size: 18px;
  height: 100%;
  width: 100%;
  background-color: #15202e;
  color: silver;
  margin: 0;
  margin-top: 5px;
  padding: 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

#countdown {
  display: none;
}

.container {
  width: 60%;
  margin: 0px;
}

.title {
  color: white;
  text-align: center;
  margin: 20px 0px 0px;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 16px;
  font-family: "Courier New", Courier, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-bar-container {
  width: 100%;
  margin: 0 auto;
}

.progress-bar {
  background-color: red;
  height: 45px;
  width: 100%;
  border-radius: 5px;
  border: solid 1px silver;
  box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
  position: relative;
  margin-bottom: 20px;
}

.progress-bar-flex-container {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 45px;
}

.progress-bar-inner,
.progress-text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 45px;
  color: white;
}

.progress-bar-inner {
  height: 100%;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 80.9%;
  height: 100%;
  width: 1px;
  border-left: 2px dashed white;
}

.stripes {
  background-size: 30px 30px;
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  animation: animate-stripes 0.6s linear infinite;
}

.stripes.slower {
  animation-duration: 1.25s;
}

.stripes.reverse {
  animation-direction: reverse;
}

@keyframes animate-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 0;
  }
}

.pre {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "Courier New", monospace;
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: -15px;
  padding: 10px;
  color: silver;
}

@media screen and (max-width: 600px) {
  .container {
    width: 90% !important;
    max-width: 90% !important;
  }
}

.table-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  vertical-align: top;
}

.domain-table {
  border-collapse: collapse;
  width: 100%;
  vertical-align: top;
}

.domain-table td {
  padding: 5px;
  justify-content: left;
  vertical-align: top;
}

@media (min-width: 600px) {
  .domain-table {
    width: calc(50% - 30px);
  }
}

.favicon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.icon {
  width: 20px;
  margin: 0px;
}

.domain {
  justify-content: left;
  text-align: left;
}

caption {
  font-style: bold;
}
.yea {
  color: lime;
}
.nay {
  color: red;
}

.table-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  vertical-align: top;
}

.domain-table {
  vertical-align: top;
}

.table-container::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  vertical-align: top;
  width: 1px;
  background-color: silver;
  z-index: 1;
}

@media (min-width: 600px) {
  .domain-table {
    width: calc(50% - 10px);
  }

  .table-container::after {
    display: block;
  }
}

@media (max-width: 599px) {
  .table-container::after {
    display: none;
  }
}

#warning {
  margin-top: -8px;
  margin-bottom: 8px;
  color: yellow;
  font-family: "Courier New", Courier, monospace;
}

.table-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  vertical-align: top;
}

#amendmentDropdown {
  background-color: inherit;
  color: #00ff00;
  border: 1px solid silver;
  font-family: "Courier New", monospace;
  padding: 5px 10px;
  margin-top: -5px;
  margin-left: 0px;
  border-radius: 0;
  outline: none;

  cursor: pointer;
  width: 100%;
}
#amendmentDropdown option {
  text-align: center;
  display: block;
}

#amendmentDropdown {
  text-align-last: center;
}

#amendmentDropdown:focus {
  border-color: lime;
}

#amendmentDropdown option {
  color: #ffffff;
}

#countdown {
  font-family: "Courier New", Courier, monospace;
  background-color: inherit;
  color: yellow;
  padding: 5px 10px;
  margin: 2px;
  display: inline-block;
  border: 0px solid silver;
  width: 100%;
}

select option {
  background-color: silver;
  color: black !important;
}

a {
  color: silver;
}
a.visited {
  color: silver;
}
