:root {
    --stat-color: transparent;
    --stat-text-color: light-dark(#000000,#ffffff);
    --stat-border-color: transparent;
    --stat-update-text-color: light-dark(#008000,#008000);
    --stat-magic-special-text-color: light-dark(#0000ff,#0000ff);
    --stat-available-text-color: light-dark(#a52a2a,#a52a2a);
}

#stats-button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2em;
}

#stats-button-container > button {
    padding: 0.5em;
    max-width: 15vw;
    min-width: 75px;

    background-color: var(--button-color);
    color: var(--button-text-color);
    border-color: var(--button-border-color);

    cursor: pointer;
}

.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-row {
    display: flex;
    justify-items: center;
}

.stat-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-field {
    padding: 1em 0.5em;
    width: 160px;
    min-width: 160px;
    text-align: right;

    background-color: var(--stat-color);
    color: var(--stat-text-color);
    border-color: var(--stat-border-color);
    font-family: Arial, sans-serif;
    font-size: 1em;

    cursor: pointer;
}

@media (min-width: 800px) {
    .stat-field {
        padding: 1em 2.5em;
        width: 30vw;
        min-width: 145px;
        text-align: center;
    }
}

.magic-special {
    color: var(--stat-magic-special-text-color);
    cursor: default;
}

.available {
    color: var(--stat-available-text-color);
    cursor: default;
}

.updated {
    color: var(--stat-update-text-color);
}
.first-time-stats-modal {
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 450px;
    background-color: var(--background-color);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 1em;
    border: solid 3px #535353;
}

.first-time-stats-continue {
    padding: 1em;
    width: 30%;
    background-color: #535353;
    color: white;
}

@media (min-width: 800px) {
    .first-time-stats-modal {
        width: 600px;
        height: 450px;
    }
}
