


.mainload {
    background: var(--vscode-editorGutter-background);
    width: calc(100% - 15px);
    min-width: 350px;
    max-width: 475px;
    height: 275px;
    border-radius: 7px;
    position: absolute;
    left: 50%;
    top: 320px;
    backdrop-filter: blur(4px);
    transform: translate(-50%);
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.483);
}

.loadertitle {
    position: absolute;
    font-family: "Gotham Bold";
    color: var(--text);
    left: 20px;
    top: 5px;
    display: block;
    font-size: 20px;
}

.codeblock {
    position: absolute;
    left: 20px;
    top: 55px;
    width: calc(100% - 45px);
    height: 150px;
    border-radius: 10px;
    background: #001b2233;
    z-index: 2;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.2);
    color: gray;
}

.bth-sess {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 100%;
    height: 50px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

pre {
  background-color: #000f1a;
  padding: 15px;
  overflow-x: auto;
  font-family: 'Monaco', monospace; 
}