body {
    background-color: rgb(36 36 36);
    font-family: Tahoma, sans-serif;
    color:#e2e2e2;
    margin: 0px;
    visibility: hidden;
}

a {
    color: rgb(96, 154, 255);
}

a:visited {
    color: rgb(106, 0, 255);
}

button, input, select {
    background-color: rgb(75 75 75);
    color: rgb(191 191 191);
    border-radius: 6px;
}

textarea {
    font-size: 1.1em;
    background-color: rgb(82 82 82);
    color: white;
    min-width: 15vw;
    min-height: 10vh;
}

.generic-container {
    background-color: rgb(82 82 82);
    width: fit-content;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    border-style: solid;
    border-color: rgb(122, 122, 122);
    font-size: min(1em, 5vw);
}

.article {
    background-color: rgb(49 49 49);
    min-width: 40vw;
    max-width: 1000px;
    text-wrap: wrap;
    word-wrap: break-word;
    line-height: 1.625em;
    padding: 0.8em;
    padding-left: min(1.5em, 2.5%);
    padding-right: min(1.5em, 2.5%);
}

.center {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.center > p, h2, h3, h4, h5, h6 {
    margin-block-start: 0.25em;
    margin-block-end: 0.25em;
}

.center-text {
    text-align: center;
}

th:first-child {
    border-top-left-radius: 6px;
}

th:last-child {
    border-top-right-radius: 6px;
}

tr.clickable:hover {
    cursor: pointer;
}

tr:hover {
    background-color: rgb(100, 100, 100);
}

tr.inactive {
    background-color: rgb(50, 50, 50);
    color:#8f8f8f;
}

tr.inactive:hover {
    background-color: rgb(64, 64, 64);
}

tr.abandoned {
    background-color: rgb(38, 34, 34);
    color:#836d6d;
}

tr.abandoned:hover {
    background-color: rgb(50, 39, 39);
}

tr.completed {
    background-color: rgb(60, 90, 60);
    color:#eaf8eb;
}

tr.completed:hover {
    background-color: rgb(90, 120, 90);
}

tr.active {
    background-color: rgb(60, 60, 60);
    color:rgb(235, 235, 235);
}

tr.active:hover {
    background-color: rgb(100, 100, 100);
}

table {
    background-color: rgb(60 60 60);
    border-collapse: collapse;
    border-radius: 6px;
    font-size: min(1em, 2.5vw);
}

th {
    border-left: none;
    border-right: none;
    background-color: rgb(82 82 82);
}

td {
    background-color: transparent;
    border-radius: 0px;
}

th, td {
    text-align: center;
    padding-left: 3px;
    padding-right: 3px;
}

#navigation-bar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    background-color: rgb(45 45 45);
    padding-top: 1vh;
    padding-bottom: 1vh;
    width: 100%;
    position: fixed;
    top: 0px;
    text-align: center;
}

#navigation-bar * {
    width: fit-content;
    min-width: 10vw;
    margin-inline: max(1vw, 15px);
}

#navigation-bar>a {
    color: #a7a7a7;
    text-decoration: none;
    cursor: pointer;
}

#navigation-bar>a:hover {
    color: white;
}