body {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(29, 29, 29);
    color: #FBBA18;
    margin: 20px;
}

h1 {
    text-align: center;
    margin: 10px;
}

input {
    display: block;
    width: 50%;
    text-align: center;
    margin: auto;
    margin-bottom: 16px;
    background-color: rgb(47, 47, 47);
    font-size: 20px;
    padding: 5px;
    color: #FBBA18;
}

input::placeholder {
    color: #FBBA18;
    opacity: 0.5;
}

table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid rgb(47, 47, 47);
}

th,
td {
    padding: 8px;
    text-align: left;
}

.yes {
    color: #008000;
    font-weight: bold;
}

.no {
    color: #cc0000;
    font-weight: bold;
}

.iwLogo {
    width: 100px;
    position: absolute;
}

.squadLogo {
    height: 100px;
    position: absolute;
    top: 20px;
    left: 150px;
    opacity: 50%;
}

footer {
    text-align: center;
    opacity: 85%;
}

a:link {
    color: rgb(255, 195, 65);
}

a:visited {
    color: rgb(255, 195, 65);
}

.sux {
    color: rgb(29, 29, 29);
    ;
}


/* Scroll bar */

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgb(49, 49, 49);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(61, 61, 61);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FBBA18;
}