
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body, html {
            height: 100%;
            font-family: Arial, sans-serif;
        }
        
        .container {
            display: flex;
            height: 100vh;
            width: 100%;
        }
        
        .left-column {
            flex: 1;
            background-color: #f0f0f0;
            padding: 10px;
            display: flex;
            flex-direction: column;
        }
        
        .right-column {
            width: 400px;
            flex-shrink: 0;
            background-color: #e0e0e0;
            padding: 20px;
            overflow-y: auto;
        }

        .consoleElement{
            display:flex;
            justify-content: space-between;
        }

        .display_vector{
          display:flex;
          justify-content: space-between;
        }
        
        #canvas {
            width: 100%;
            height: 100%;
            background-color: white;
            border: 1px solid #ccc;
            display: block;
        }
        
        /* Sample content styling */
        h2 {
            color: #333;
            margin-bottom: 15px;
        }
        
        p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }


        
.slidecontainer, .checkcontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}