html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #ffffff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .inner {
    max-width: calc(100vw - 2rem);
    width: 800px;
  }
  .draggable {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: var(--Surface_0);
    cursor: move;
  }
  #imageContainer {
    margin-bottom: 1rem;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 1rem;
  }   

  #logo {
    height: 60px;
    margin-top: 1rem;
  }

  .video {
    width: 100%;
    max-width: calc(100vw - 2rem);
    display: flex;
    justify-content: center;
    background: var(--Surface_0);
    height: 400px;
    border-radius: .25rem .25rem 0 0;
  }
  label {
    width: 100%;
    font-size: 12px;
    color: #ccc;
  }

  input[type='file'] {
    flex-shrink: 0;
  }
  input[type='file']::file-selector-button {
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--Surface);
    color: var(--Font_Color);
    padding: 8px 16px;
    border: none;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;
  }

  input[type='file']::file-selector-button:hover {
    background-color: var(--Surface_1);
  }

  hr {
    border: none;
    border-top: 1px solid hsl(0, 0%, 11%);
  }

  :root {
    --Background: #121212;
    --Background_Alternating: hsl(0, 0%, 6%);

    --Surface_0_Variant: hsl(0, 0%, 11%);
    --Surface_0: hsl(0, 0%, 11%);
    --Surface: #2A2A2A;
    --Surface_1: #404040;
    --Surface_2: #575757;
    --Primary: #c00c00;
  }
  input[type='number'] {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid var(--Surface_2);
    border-radius: 4px;
    background-color: var(--Surface_0);
    color: #ffffff;
    font-family: Arial;
}

  input[type='text'],
  select, textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid var(--Surface_2);
    border-radius: 4px;
    background-color: var(--Surface_0);
    color: #ffffff;
    font-family: Arial;
  }

  button {
    display: inline-block;
    padding: 8px 16px;
    width: 100%;
    background-color: var(--Surface);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
  }

  button:hover {
    background-color: var(--Surface_1);
  }

  button:disabled {
    background-color: var(--Surface) !important;
    opacity: 0.5;
    cursor: not-allowed;
  }

  .row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 0;
  }
  video {
    width: 100%;
  }

  .spacer {
    width: 100%;
  }

  .no-collapse {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-basis: 1;
  }

  p {
    line-height: 1.5;
    color: #ccc;
  }

  .progress-bar-container {
    background-color: var(--Surface_0); /* You should replace this with the desired color or CSS variable. */
    border-radius: 0 0 .25rem .25rem;
    height: 0.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .progress-bar-progress {
    background-color: var(--Primary); /* You should replace this with the desired color or CSS variable. */
    position: absolute;
    bottom: 0;
    top: 0;
    transition: width 1s;
  }

  .vspacer {
    width: 100%;
    height: .5rem;
  }

  .primary {
    background: #7A120B !important;
  }

  #settingsDescription {
    margin-top: 0;
  }

  #message {
    flex-shrink: 0;
    font-size: 12px;
    color: #ccc;
    margin-right: .5rem;
  }