/* General */

main {
    min-height: calc(100vh - 90px);
    background-color: whitesmoke;
    padding: 0px 10px;
}

/* Table */

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 20px;
}

thead {
    background-color: #191919;
    color: white;
}

tbody {
    background-color: white;
}

th, td {
    border: thin solid black;
    padding: 5px;
}

/* Mobile Menu */

#mobile-username {
    font-size: 18px;
    border-bottom: thin solid gray;
}

/* Popup */

#popup {
    position: fixed;
    left: 50%;
    top: calc(100vh - 140px);
    transform: translate(-50%);
    padding: 10px;
    border-radius: 10px;
    z-index: 7;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}