body {
    font-family: Arial, sans-serif;
    text-align: center;
    /*padding: 20px;*/
}
.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.supplies {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
}
label {
    display: block;
    margin: 5px;
}
.inline {
    display: inline;
}
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    margin-top: 5px;
}
.character {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
label {
    cursor: pointer;
}
input[type=submit],
button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
}
button:hover {
    background-color: #0056b3;
}
.stealth-option {
    padding: 10px;
    margin: 5px 0;
    background-color: #f0f0f0;
    cursor: pointer;
    border: 2px solid #ddd;
    text-align: center;
}
.stealth-option:hover {
    background-color: #e8e8e8;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
header > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    padding: 1rem;
}

header > ul > li {
    margin-right: 2rem;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

header > h2 {
    margin-left: 2rem;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    background-color: grey;
    padding: .5rem 1rem;
    border-radius: 0.3rem;
}

a:hover {
    animation-name: fadeOut;
    animation-duration: 0.5s;
    background-color: #4e4e4e;
    box-shadow: 2px 2px 5px #4e4e4e;
}

a:not(:hover) {
    animation-name: fadeIn;
    animation-duration: 0.8s;
    background-color: grey;
}

a:active {
    background-color: #4e4e4e;
    box-shadow: 2px 2px 5px #4e4e4e;
}

.current {
    background-color: #4e4e4e !important;
    box-shadow: 2px 2px 5px #535353;
}

.submit:disabled {
    background-color: #4e4e4e;
}
.submit:enabled {
    background-color: #0056b3;
}