body{
    background-color: #010101;
}
header{
  font-family: garamond;
  font-weight: bold;
  background-color: #010101; 
  color: #FFFFFF; 
  padding: 20px;
  text-align: center;
  font-size: 2em;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), 
               -2px -2px 5px rgba(255, 255, 255, 0.3); /* Shadow for embossed look */
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5),  /* Inner shadow for depth */
              6px 8px 18px rgba(0, 0, 0, 0.3); /* Outer shadow for lift */
  border: 2px solid yellow;
}
button{
    background-color: #010101;
    color: white;
    border: 2px solid yellow;
}
button:hover{
    background-color: yellow;
    color: #010101;
    border: 2px solid white;
}
input{
    background-color: #010101;
    border: 2px solid yellow;
    color: white;
    display: block;
    margin: 10px 0; 
}
#labels{
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 10px 20px;
    padding: 10px;
    border-color: yellow;
    margin-left: 40px;
}
legend{
    color: yellow;
}
label{
    color: white;
}
.platform-edit-checkboxes {
    display: grid;
    grid-template-columns: repeat(5, auto); /* 5 columns */
    gap: 8px; /* spacing between checkboxes */
    margin-top: 5px;
  }
select{
    background-color: #010101;
    border: 2px solid yellow;
    color: white;
}
textarea{
    background-color: #010101;
    border: 2px solid yellow;
    color: white; 
}
#game-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px;
    border: 2px solid yellow;
}
#add-button{
    height: 60vh;
    box-sizing: border-box;
    margin-right: 32px;
    margin-left: 20px;
    margin-top: 60px;
}
#add{
    width: 100%;
    padding: 20px;
    margin: 20px 0;
    margin-right: 20px;
}
#reset1{
    width: 100%;
    padding: 20px;
    margin: 20px 0;
    margin-right: 20px;
}
#container{
    gap: 1rem;
    margin: 30px 20px;
    height: 60vh;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    body{
        width: 100%;
    }
    #container {
      flex-direction: column; 
      align-items: center;
      height: 160vh;
      gap: 1rem;
    }
  
    #container > div {
      width: 75vw;
      height: 42vh; 
      max-width: 100vw;
    }
    .list-view, .play-view, .done-view{
    justify-content: center;
    align-items: center;
    }
    textarea{
        width: 100%;
        overflow: hidden;
    }
  }
#list, #playing, #done{
  background-color: #010101; 
  color: #FFFFFF; 
  padding: 20px;
  width: 28vw;
  height: 60vh;
  font-size: 2em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3), 
               -1px -1px 3px rgba(20, 20, 20, 0.3); /* Shadow for embossed look */
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5),  /* Inner shadow for depth */
              0 4px 10px rgba(0, 0, 0, 0.3); /* Outer shadow for lift */
  border: 2px solid yellow;
}

.list-view, .play-view, .done-view{
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease-in 180ms;
}
.list-view:hover, .play-view:hover, .done-view:hover{
    cursor: pointer;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    transition: ease-in 180ms;
}
.list-view{
    background-image: url("img/gamelist-img.png");
}
.list-view:hover, .list-view.active{
    background-image: url("img/playlist-img.png");
}
.play-view{
    background-image: url("img/currentlist-img.png");
}
.play-view:hover, .play-view.active{
    background-image: url("img/currentlyplaying-img.png");
}
.done-view{
    background-image: url("img/done-img.png");
}
.done-view:hover, .done-view.active{
    background-image: url("img/donelist-img.png");
}
#reset{
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%); 
    padding: 0.75rem 1.5rem;
}
#table-container{  
    border: 2px solid yellow;
    overflow-x: auto;
    overflow-y: auto;
}
table{
    table-layout: fixed;
    border-collapse: collapse;
}
th, td{
    width: 100%;
    height: 8px;
    padding: 22px 22px;
    text-align: center;
}
th{
    color: black;
    background-color: white;
    text-align: center;
    font-size: 15px;
}
td{
   font-size: 15px;
   border: 2px solid yellow;
}
thead tr{
    border: 2px solid yellow;
}
#game-list, #current-playing, #done-playing{
    width: 80vw;
    height: 80vh;
    margin: auto;
    padding: 1rem;
    background-color: #010101;
    color: #FFFFFF;
    border: 2px solid yellow;
    position: relative;
}
.hidden {
    display: none;
}
.flex {
    display: flex;
}
.block {
    display: block;
}