body {
    background-color: #303030;
    color: #ffffff;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
        'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

p {
    margin: 0;
    padding: 0;
}

.button {
    border: 0;
    transition: 0.1s linear;
    background-color: #0074d9;
    border: 1px solid transparent;
    color: #fff;
    margin: 0;
    padding: 8px;
    text-decoration: none;
    font-size: 14px;
}

a:hover,
button:hover,
.button:hover {
    filter: brightness(1.5);
    cursor: pointer;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-center {
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.flex-center-column {
    align-items: center;
}

table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

label {
    display: block;
    font-size: small;
    font-weight: bold;
    margin-bottom: 4px;
}

textarea {
    min-height: 100px;
}

input,
select {
    padding: 8px;
}

.w-300 {
    width: 300px;
}

.w-full {
    width: 100%;
}

td {
    word-break: break-word;
}

.map {
    width: 100%;
    height: 400px;
}

nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px;
    background: #202020;
}

.thumb {
    width: 300px;
    height: 200px;
    object-fit: contain;
}

.new-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0074d9;
    color: #fff;
    border: 0;
    font-size: 40px;
}

.image-button {
    background-color: #0074d9;
    width: 38px;
    height: 32px;
    border: 0;
}

.image-button img {
    width: 20px;
    height: 20px;
}

.danger {
    background-color: #ff4136;
}

.mystery-letter {
    display: inline-block;
    font-family: monospace;
    font-weight: bold;
    border: 2px solid black;
    padding: 24px 16px;
    background-color: #808080;
    border-radius: 8px;
}

.mystery-letter-revealed {
    background-color: #ff851b;
}

.mystery-letter-whitespace {
    display: inline-block;
    width: 40px;
    height: 40px;
}
