body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    user-select: none;
    overflow-y: auto;
    /* background-color: darkgrey; */
}

.container {
    width: 80%;
    margin: 0 auto;
}

.section {
    margin: 20px 0;
    position: relative;
    /* overflow-y: auto; */
}

input {
    margin-bottom: 10px;
    margin-right: 20px;
    padding: 5px;
    font-weight: bold;
    text-align: center;
}

input::placeholder {
    color: lightgrey;
    font-weight: lighter;
    opacity: 1; /* Ensures consistent color in all browsers */
}


button {
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

button#submit {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    margin-top: 0;
    font-weight: bold;
}

button#submit.active {
    background-color: #f44336;
}


.settings-menu {
    position: fixed;
    top: 0;
    left: -40%; /* Hide off-screen */
    width: 20%;
    height: 100%;
    background-color: #f1f1f1;
    transition: left 0.3s;
    box-sizing: border-box;
    border: thin solid grey;
    overflow-y: auto;
    /* Additional styling */
}

#settingsButton {
    position: absolute;
    top: 4%;
    left: 3%;
    font-size: 1.125em;
}

#closeSettingsButton{
    position: absolute;
    top: 4%;
    left: 15%;
    font-size: 1.125em;
}

#manualIncrement{
    width: 30%;
    margin-left: 10px
}

#multiplayerButton {
    position: absolute;
    bottom: 4%;
    right: 3%;
    font-size: 1.125em;
}

.multiplayer-menu {
    position: absolute;
    /* top: 25%;
    left: 5%; */
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 40em;
    height: 65%;
    background-color: lightgrey;
    padding: 20px;
    /* z-index: 1000; Ensure it's above other content */
    margin: auto;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    overflow-y: auto;
}

.multiplayer-menu .closePopup{
    position: absolute;
    top:2%;
    right:2%;
    /* height:2em; */
}

#underDevelopmentMessage {
    margin-top: 20px;
    padding: 10px;
    border: 0.5px solid black;
    border-radius: 5px;
    background-color: rgb(239,239,239);
    text-align: center;
}


#informationButton {
    position: absolute;
    bottom: 4%;
    left: 3%;
    font-size: 1.125em;
    width: 2.5em
}

.information-menu {
    position: absolute;
    /* top: 25%;
    left: 5%; */
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 40em;
    height: 65%;
    background-color: lightgrey;
    padding: 20px;
    /* z-index: 1000; Ensure it's above other content */
    margin: auto;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    flex-direction: column;
    overflow-y: auto;
}

.information-menu .info-button-container {
    position: absolute;
    margin: auto;
    left:0;
    right:0;
    bottom: 2em;
    text-align: center;
}

.information-menu .progress-indicators {
    position: absolute;
    left:0;
    right:0;
    bottom: 0;
    margin:0.5em;
}

.information-menu .indicator {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.information-menu .closePopup{
    position: absolute;
    top:2%;
    right:2%;
    /* height:2em; */
}

.info-page #game_underway{
    width: 80%;
}

.info-page #game_underway_round{
    width: 80%;
}

.info-page #typical_results{
    width: 80%;
}

.information-menu {
    font-size: large;
}

.information-menu .active,
.period-button.active,
.increment-button.active,
.currency-button.active,
.theme-button.active{
    background-color: #4CAF50;
}

.increment-button {
    display: inline;
}

