#game-board{
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #3C3744;
}
#world-info{
    position: absolute;
    width:100%;
    height: 1rem;
    display: flex;
    transition: opacity 2s ease;
    color: white;
}
#world-info-specific{
    position: absolute;
    width:100%;
    height: 1rem;
    display: flex;
    opacity: 0;
    transition: opacity 2s ease;
    color: white;

}
#world-info.started{
    background-color: #3C3744;
}
#world-info-specific.started{
    background-color: #3C3744;
}
.world-info-item > div {
    overflow-y: hidden;
}
.world-info-item{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
#world-map-container{
    width:100%;
    height: 80%;
    display: flex;
    flex-direction: row;
}
#game-board #map-bottom-bar{
    height: 20%;
    width: 100%;
    display: flex;
    background-color: #DD1C1A;
    flex-direction: row-reverse;
}
#stats{
    min-width: 20%;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
#stats > div {
    padding: 1rem;
}

#world-map{
    height: 100%;
    width: 80%;
    background-color: darkblue;
}
#map-side-bar-container{
    width: 20%;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    background-color:  white;
    overflow-y: scroll;
    position: relative;
    height: calc(100% - 1rem);
    max-height: calc(100% - 1rem);
}
#map-side-bar{
    display: flex;
    flex-direction: column;
    background-color: #000103;
    overflow-y: scroll;
    margin-bottom: 5rem;
}

#map-side-bar-container #side-bar-header span{
    width: 146px;
    max-width: 146px;
    min-width: 146px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#map-side-bar-container #side-bar-header span:nth-of-type(2){
    font-size: 18px;
}
#map-side-bar-container #side-bar-header{
    padding: 1rem 0 1rem 1rem;
    width: 100%;
    background-color: #3C3744;
    color: white;
    font-size: 24px;
    height: 3rem;
    min-height: 3rem;
    display: flex;
    justify-content: space-between;
}
#map-side-bar-container #side-bar-footer{
    padding: 1rem 0 ;
    width: 100%;
    background-color: white;
    color: black;
    height: 3rem;
    min-height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0px;
    left:0px;
    text-align: center;
    border-top: 2px solid black;
}

#map-side-bar .side-bar-listing {
    width: 100%;
    min-height: 3rem;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    background-color: white;
    color: #3C3744;
    transition: opacity 3s ease-out;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid black;
}

#game-actions-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;

}
#game-actions-container > h3 {
    font-size: 32px;
    text-align: start;
    padding-left: 1rem;
}
#game-actions{
    display: flex;
    width: 100%;
    height: 100%;
    padding-left: 3rem;
}
#game-actions > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
#game-actions > div:not(:nth-of-type(1)) {
    margin-left:5rem;
}
#game-actions > div svg{
    height: 5rem;
    width: 5rem;
    cursor: pointer;
}