body, html {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    
}
.workspace-tracker {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: auto;
}
.tracker-result {
    height: 450px;
    background: #e6e6e6;
    overflow-y: auto;
}

.workspace-codeblock {
    background-color: #eee;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--tblr-card-border-radius);
    overflow: auto;
}
.workspace-frame {
    width: 100%;
    height: calc(100vh - 90px);
    margin: 0px;
}
.workspace-navigation {
    width: 100vw;
    box-sizing: border-box;
}
.workspace-tabs {
    min-height: 36px;
}
.workspace-header {
    min-height: 45px;
    padding: 3px 0px 5px 0px !important;
}
.workspace-header .container-xl {
    height: 43px;
}
.workspace-title {
    width: 350px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.workspace-control {
    display: flex;
    width: 470px;
    justify-content: end;
}
.workspace-logo {
    height: 30px;
    padding: 5px;
    position: absolute;
    right: 24px;
}
.workspace-content {
    height: calc(100vh - 87px);
    position: relative;
}

