
/* --- ONE COLUMN STYLING --- */  

#game-content.one-col #column-one {
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 5px 0px rgb(43, 43, 43);
    display: inline-block;
    margin: auto;
    text-align: left;
    width: 90%;
    padding: 2%;
    overflow: scroll;
}

/* --- TWO COLUMN STYLING --- */

#game-content.two-col .flex-col {
    padding: 0;
    background-color: rgb(255, 184, 184);
    width: 100%;
}
#game-content.full-span > #column-one, #game-content.full-span > #flex-container {
    width: 100%;
    margin-top: 10px;
}

#game-content #column-one textarea {
    border-style: solid;
    border-width: 1px;
    overflow: scroll;
    resize: none;
    padding: 2% 0% 8% 8%;
    width: 100%;
    height: 100%;
    outline: none;
    box-sizing: border-box;
}

#game-content.two-col .flex-col #top-section {
    background-color: white;
    margin: 0;
    height: 30px;
}

#game-content.two-col .flex-col #top-section button {
    aspect-ratio: 1 / 1;
    margin: .5em .5em .5em .8em;
}

/* -- MODAL POP UP STYLING -- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid black;
    width: 50%; 
    border-style: solid;
    border-color: #0e0e0e;
    box-shadow: 2px 2px 0px 0px #0e0e0e;
    float: left;
    margin-left: 10%;
  }

  #modal-rom {
    width: 300px;
    height: 300px;
    position: fixed;
    left: 41%;
    top: 20%;

 }

  #modal-rom .modal-content {
    margin: 50%;
 }
  
/*--CONTENT HEADER STYLING -- */
#content-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: left;
}

#flex-container {
    height: 100%;
    border: 1px solid black;
}

