

.mainload {
    background: var(--vscode-editorGutter-background);
    width: calc(100% - 15px);
    min-width: 350px;
    max-width: 475px;
    height: auto;
    padding: 25px 0px;
    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);
}

.titles {
    position: absolute;
    font-family: "Gotham Bold";
    color: var(--text);
    left: 20px;
    top: 5px;
    display: block;
    font-size: 20px;
}

.mdf {
    position: relative;
    left: 20px;
    margin-top: 25px;
    width: calc(100% - 45px);
    height: auto;
    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;
    font-family: "Gotham Bold";
    color: var(--text-sec);
}

.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; 
}

.udpr {
    width: 25px;
    height: 25px;
    border-radius: 100px;
    position: relative;
    top: 5px;
    cursor: pointer;
    filter: drop-shadow(0px 0px 6px black);
    transition: all 0.25s ease;
}

.udpr:hover {
    scale: 1.1;
}