body {
    font-family: Helvetica, sans-serif;
    color: white;
    background-color: black;
}

#header {
    text-align: center;
    line-height: 1em;
}

#header h2 {
    font-size: medium;
}

#logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 5em;
}

table {
    width: 100%;
}

#apks,
#apks th,
#apks td {
    border: 1px solid;
    border-collapse: collapse;
    text-align: center;
}

#apks th {
    background-color: white;
    color: black;
    font-weight: normal;
}

#apks-mobile,
#apks-mobile th,
#apks-mobile td {
    margin: 0;
    border: 1px solid;
    border-collapse: collapse;
    text-align: center;
    line-height: 1.75em;
}

#apks-mobile th {
    font-weight: normal;
}

.cell-invert {
    background-color: white;
    color: black;
    margin-top: 1em;
}

#filter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid white;
    border-bottom: 0;
}

.hash {
    max-width: 5em;
}

.gitlab {
    height: 1em;
}

input[type="text"] {
    color: white;
    background-color: black;
    border: 1px solid white;
    width: clamp(1em, 50%, 10em);
}

.copy-button {
    margin-top: auto;
    margin-bottom: auto;
    background-color: black;
    width: 1.5em;
    height: 1.5em;
    padding: 0%;
    border: 0;
    border-radius: 5%;
}

.copy-button-mobile {
    margin-top: auto;
    margin-bottom: auto;
    background-color: black;
    width: 2em;
    height: 2em;
    padding: 0%;
    border: 0;
    border-radius: 5%;
}

.copy-button:hover {
    background-color: rgb(50, 50, 50);
}

.copy-button:active {
    background-color: rgb(75, 75, 75);
}

.copy-icon {
    filter: invert(1);
    height: 1em;
    width: 1em;
    margin-top: 0.25em;
}

.filter-button {
    width: 5em;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 1rem;
}

.filter-button:hover {
    background-color: rgb(175, 175, 175);
}

.filter-button:active {
    background-color: rgb(125, 125, 125);
}

#snackbar-copy {
    visibility: hidden;

    background-color: black;
    color: white;
    border: 1px solid white;
    border-radius: 0.5em;
    text-align: center;
    padding: 0.25em;

    position: fixed;
    left: 50%;
    transform: translate(-50%);
    top: 0.5em;
}

#snackbar-copy.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2s;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2s;
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 0.5em;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 0.5em;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

a {
    color: lightskyblue;
}

a:visited {
    color: orchid;
}

a:hover {
    color: aqua;
}

.hidden {
    display: none;
}

#noscript {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: -0.5em;
    margin-bottom: 0.5em;
    color: white;
    background-color: rgb(70, 50, 0);
    border: 0px;
    border-radius: 0.5em;
    padding: 0.25em;
    text-align: center;
}

#redirect,
#redirect-mobile {
    display: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: -0.5em;
    margin-bottom: 0.5em;
    color: white;
    background-color: rgb(70, 50, 0);
    border: 0px;
    border-radius: 0.5em;
    padding: 0.25em;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    #redirect {
        display: block;
    }
}

@media only screen and (min-width: 600px) {
    #redirect-mobile {
        display: block;
    }
}


#error {
    text-align: center;
    line-height: 1em;
}

#thisisfine {
    margin-left: auto;
    margin-right: auto;
    display: block;
    border: 0;
    border-radius: 1em;
    width: clamp(50px, 300px, 500px);
}


#faq {
    text-align: center;
    line-height: 1em;
}

code {
    white-space: pre-wrap;
}


#docs {
    text-align: center;
    line-height: 1.25em;
}

ul {
    text-align: left;
    list-style-position: inside;
}

#docs-content {
    display: block;
    width: clamp(5em, 50em, 100%);
    margin-left: auto;
    margin-right: auto;
}

#contact {
    text-align: center;
    line-height: 1em;
}
input, textarea {
    background-color: black;
    color: white;
    border: 1px solid white;
}

#form-message {
    width: 50%;
}