body {
  background-color: #242234;
  background-repeat: repeat;
  background-image: url('null_bg.png');
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Press Start 2P', monospace, arial;
}

#game-title {
  width: 1280px;
  padding: 20px;
  margin-top: 20px;
  border: 2px solid #5a5a6a;
  background-color: #242234;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-title img {
  max-width: 100%;
  height: auto;
  display: block;
}

#main-content {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-items: flex-start;
}

#unity-container {
  width: 800px;
  height: 450px;
  border: 2px solid #5a5a6a;
  background-color: #242234;
  position: relative;
  flex-shrink: 0;
}

#left-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 870px;
}

#right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

#unity-canvas {
  background: #242234;
  width: 100%;
  height: 100%;
  display: block;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#unity-logo {
  width: 154px;
  height: 130px;
  background: url('unity-logo-dark.png') no-repeat center;
}

#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

#description {
  width: 100%;
  padding: 10px;
  border: 2px solid #5a5a6a;
  background-color: #242234;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  min-height: 60px;
  box-sizing: border-box;
}

#control-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

#title-box {
  border: 2px solid #5a5a6a;
  background-color: #242234;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

#title-box p {
  margin: 5px 0;
}

#GDD-button {
  width: 64px;
  height: 64px;
  border: 2px solid #5a5a6a;
  background-color: #242234;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.foot {
  margin-top: 40px;
}

.foot button{
    background-color: #338cca;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: auto;
    min-width: 200px;
}

button:hover {
    background-color: #45a049;
}
input[type="file"] {
    padding: 5px;
}

#scroll-button:hover
{
  background-color: #3a3a4a;
}

#scroll-button:active,
#undo-button:active {
  background-color: #1a1a2a;
}

#scroll-button img,
#undo-button img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1320px) {
  #main-content {
    flex-direction: column;
    align-items: center;
  }

  #left-sidebar,
  #right-sidebar {
    width: calc(100vw - 40px);
    max-width: 1280px;
  }

  #description {
    width: 100%;
  }

  #unity-container {
    width: calc(100vw - 40px);
    max-width: 1280px;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  #unity-canvas {
    width: 100%;
    height: 100%;
  }
}
