#loadingOverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  #spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
.containerDiv {
    width: 100%;
    display: flex;
}

.leftDiv {
    width: 50%;
}

.rightDiv {
    width: 50%;
}

.dottedDiv {
    margin-top: 10px;
    border: 1px dotted;
    padding: 5px 10px 5px 5px;
}
.dottedDiv pre {
    margin-left: -85px !important;
}