.v-datalist-container {
    min-height: 31.25rem;
    height: 50rem;
    width: 100%;
    margin-right: 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: auto; /* Enable scrolling */
}

.toolbar-item-list {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    gap: 0.625rem;
    padding: 0.625rem;
}

.text-danger {
    color: red;
    font-weight: bold;
    text-align: center;
}

.text-success {
    color: green;
    font-weight: bold;
    text-align: center;
}

.code-area {
    font-family: monospace;
    overflow: auto;
}

.vt-code {
    min-height: 31.25rem;
    height: 70vh;
    font-family: monospace;
    overflow: auto;
    background-color: rgb(220, 220, 220);
}

#obs-table {
    overflow: auto;
    min-height: 70%;
}

#obs-table>img {
    height: 100%;
    vertical-align: bottom;
    max-width: 300%;
}

.highlight {
    border: 2px solid red;
    /* transition: border-color 0.3s ease-in-out; */
  }
  
  .highlight:focus {
    outline: none;
    border-color: orange;
  }
  
  #container {
    display: flex;
    flex-direction: column;
    padding: auto;
    margin: auto;
    text-align: left;
  }
  
  .comment {
    color: green;
    font-style: italic;
  }
  
  ul.custom-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  ul.custom-list li {
    padding: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    background-color: lightgray;
    cursor: move;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  li.drag-sort-active {
    background: transparent;
    color: transparent;
    border: 1px greenyellow;
  }
  
  span.drag-sort-active {
    padding: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    background-color: lightgray;
    cursor: move;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .success-table{
    font-size: 1rem;
    color: rgb(31, 170, 31);
    font-weight: bold;
  }
  
  .failure-table{
    font-size: 1rem;
    color: rgb(228, 23, 23);
    font-weight: bold;
  }
  
  .bold-table{
    font-weight: bold;
  }
  .v-instruction-container {
    border: .2rem solid #97d23d;
    justify-content: flex-start;
  }

  .code-area {
    font-family: monospace;
    overflow: auto;
  }