/* Setup */
body {
  text-align: center;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: white;
  height: 100vh;
}

main {
  display: flex;
  height: 100%;
}

/* Control Panel */

#side-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 380px;
  height: 100%;
  padding: 32px;
  box-sizing: border-box;
  background-color: #1a1a1a;
}

#controls, #buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

#tutorial {
  text-align: justify;
}

.button, .button:visited {
  color: white;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 24px;
  box-sizing: border-box;
  border-style: none;
  font-size: 1em;
  transition: all 0.25s;
}

.button:hover {
  cursor: pointer;
  background: #222;
}

#bg-color {
  border-width: 1px;
  border-style: none;
}

[data-select='download'] { 
  background: #008a00;
  text-decoration: none;
}

[data-select='download']:hover { 
  background: #005a00;
}

[data-select='record'],[data-select='stop'] { 
  background: #A00;
}

[data-select='record']:hover, [data-select='stop']:hover { 
  background: #8a0000;
}

[data-select='stop'],[data-select='download'] {  /*disables stop button*/
  display: none;
}

/* Canvas */
#canvasContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#pmCanvas {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  max-height: 720px;
  border: 10px solid black;
}