/* Colors
Background: #131419
Background-foreground: #20212F
Main Highlight: #4357AF
Dim Highlight: #27283A
Font: #E6E7DC
 */

body {
    background-color: #131419;
    color: #E6E7DC;
    text-align: center;
    font-size: 16px;
}

p {
    white-space: pre;
}

button {
    background-color: #20212F;
    color: #E6E7DC;
    min-width: 6%;
    min-height: 2vh;
    border: solid 1px #131419;
}

.active {
    background-color: #4357AF;
}

.shopButton:active {
    background-color: #4357AF;
}

.tab {
    display: none;
    height: 75vh;
}

.tab-style {
    border: 1px solid #4357AF;
    background-color: #20212F;
    padding: .2%;
    min-height: 15vh;
    margin: 0 auto 1%;
    text-align: center;
}

.center-column {
    float: left;
    width: 60%;
    height: 99vh;
}

.side-column {
    float: left;
    width: 20%;
}

.stats {
    text-align: left;
    width: 50%;
    border: 1px solid #4357AF;
    background-color: #20212F;
    margin: 2% auto auto;
    padding: 0 2% 0;
    height: 80vh;
    word-wrap: break-word;
    overflow: hidden;
}

.stats p {
    white-space: pre-wrap;
}

hr {
    background: #4357AF;
    border: none;
    height: 1px;
}

.progress-bar {
    display: block;
    position: relative;
    width: 100%;
}

.progress-bar progress {
    width: 80%;
    height: 5vh;
    background-color: #20212F;
    border: #4357AF;
}

.progress-bar progress::-webkit-progress-bar {background-color: #20212F;}

.progress-bar span {
    position: absolute;
    width: 80%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.shopButton {
    min-width: 32.7%;
    min-height: 5vh;
    margin-bottom: 4px;
    margin-right: 0;
    margin-left: 0;
    border-color: #4357AF;
    white-space: pre;
    background: #27283A;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-button {
    background-color: #4357AF;
    border: none;
    color: white;
    font-size: 30px;
    border-radius: 95%;
    height: 40px;
    width: 5%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-left: 30px;
    margin-right: 30px;
}

.arrow-button:hover {
    transform: scale(1.1);
}

.dialog {
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    position: fixed;
    align-items: center;
    justify-content: center;
}

.dialog-box {
    width: 50%;
    height: 50%;
    background: #131419;
    word-wrap: break-word;
    padding: 20px;
}

.dialog-box p {
    white-space: pre-wrap;
}

.close-button {
    min-width: 5vw;
    min-height: 5vh;
}

.factory-style {
    min-height: 13vh;
}