* {
    color: white;
  }
  
  body {
    padding: 0px;
    margin: 0px;
    background-color: rgb(30, 60, 125);
  }
  
  #body-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  #body-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
  }
  
  #left-side-td, #right-side-td {
    border: 1px solid white;
    height: 100%; 
  }
  
  #left-side-td {
    margin: 0px;
    padding: 0px;
    width: 35%;
    min-width: 500px;
  }
  
  #right-side-td {
    width: 65%;
    height: 99.5vh;
    vertical-align: top;
    text-align: left;
    overflow: hidden;
  }
  
  #input-container {
  /*   position: relative; */
    width: 100%;
    height: 100%;
  /*   text-align: center; */
  }
  
  #left-side-table{
    border-collapse: collapse;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
  }
  
  #left-side-table tr td {
    padding: 0px;
    margin: 0px;
    width: 50%;
    height: fit-content;
  }
  
  .input-header {
    text-align: right;
    min-width: 80px;
  }
  
  #input-table tr td {
    padding: 2px;
  }
  
  .input-box {
    border: 1px solid black;
  }
  
  .center-inner-element {
    text-align: center;
  }
  
  .vert-buffer, .vert-buffer-lr, .vert-buffer-lrb {
    height: 20px;
  }
  
  .logo-container {
    font-size: 25px;
  }
  
  .input-box{
    background: black;
    border-color: white;
  }
  
  #img-container {
    width: inherit;
    height: 100%;
    font-size: 40px;
    overflow: hidden;
  }

  #img-container img {
    width: 100%;
    height: auto;
  }
  
  #submit-btn:hover{
    background-color: rgb(100, 100, 100);
  }