body {
    font-family: Verdana, Helvetica, sans-serif;
    text-align: center;
    background-color: #222;
    margin: 0;
    color: #fff;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='white'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
    background-size: 12px;
    background-position: 206px 17px;
    padding-left: 12px !important;
    background-repeat: no-repeat;
    outline: none;
}

select:-moz-focusring {
    transition-duration: 0s;
    color: transparent;
    text-shadow: 0 0 0 #fff;
}

option {
    background-color: var(--c-3);
    color: var(--c-f);
}

.btn {
    outline: none;
    cursor: pointer;
    padding: 8px;
    margin: 10px;
    width: 230px;
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 19px;
    background-color: #333;
    color: white;
    border: 0px solid white;
    border-radius: 25px;
}

img {
    width: 770px;
    max-width: 80%;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    margin: 3vh 0 5px 0;
    animation: fi 1s;
}

.disabled__label {
    display: none;
}


.radio {
    display: inline-flex;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0);

}

.radio__input {
    display: none;
}

.radio__label {
    padding: 8px 14px;
    font-size: 14px;
    font-family: sans-serif;
    color: #ffffff;
    background: #09f;
    cursor: pointer;
    transition: background 0.1s;
}

.radio__label:not(:last-of-type) {
    border-right: 1px solid #006b50;
}

.radio__input:checked+.radio__label {
    background: rgb(0, 95, 158);
}

@keyframes fi {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main {
    animation: fi 1.5s .7s both;
}

a {
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}

ol {
    margin: auto;
    text-align: left;
    display: inline-block;
}

li::marker {
    text-decoration: bold;
    color: #09f;
}

li {
    margin: 5px;
}

.container {
    width: 80%;
    max-width: 510px;
    margin: auto;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #222;
    overflow: hidden;
}

.inst-button {
    padding: 0;
}

@media (prefers-color-scheme: dark) {
    ewt-install-dialog {
        /*--mdc-theme-primary: #ffa000; /*buttons*/
        --mdc-theme-surface: #333;
        --mdc-dialog-heading-ink-color: #fff;
        --mdc-dialog-content-ink-color: #ddd;
        --mdc-text-field-fill-color: #ddd;
    }
}


/* Added this 8/27/24 to make a cool table*/
table.darkTable {
  font-family: Tahoma, Geneva, sans-serif;
  border: 2px solid #000000;
  background-color: #4A4A4A;
  width:800px; 
  max-width:100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-collapse: collapse;
}
table.darkTable td, table.darkTable th {
  border: 1px solid #4A4A4A;
  padding: 3px 2px;
}
table.darkTable tbody td {
  font-size: 13px;
  color: #E6E6E6;
}
table.darkTable tr:nth-child(even) {
  background: #888888;
}
table.darkTable thead {
  background: #000000;
  border-bottom: 3px solid #000000;
}
table.darkTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #E6E6E6;
  text-align: center;
  border-left: 2px solid #4A4A4A;
}
table.darkTable thead th:first-child {
  border-left: none;
}

table.darkTable tfoot {
  font-size: 12px;
  font-weight: bold;
  color: #E6E6E6;
  background: #000000;
  background: -moz-linear-gradient(top, #404040 0%, #191919 66%, #000000 100%);
  background: -webkit-linear-gradient(top, #404040 0%, #191919 66%, #000000 100%);
  background: linear-gradient(to bottom, #404040 0%, #191919 66%, #000000 100%);
  border-top: 1px solid #4A4A4A;
}
table.darkTable tfoot td {
  font-size: 12px;
}



