body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f1f1f1;
    overflow: hidden;
}
nav {
    height: 8vh;
}
.canvas {
    width: 100%;
    height: 92vh;
    overflow: hidden;
}
.frame {
    background-color: red;
    overflow: hidden;
    /* position: fixed !important; */
}
.context {
    background-color:#2B3035;
    position: fixed;
    width: 150px;
    min-height: 350px;
    top: 0;
    left: 0;
    display: none;
    z-index: 999;
}
.context-item {
    background-color: #2B3035;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.context-item:first-child {
    border-top: 1px solid #ccc;
}
/* .ctx {
    position: relative;
} */
.ctx-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.ui-draggable-handle {
    z-index: 900 !important;
}

.ui-resizable-handle {
    z-index: 10000 !important;
}

.ui-icon-gripsmall-diagonal-se {
    z-index: 10000 !important;
}

/* Import ttf font */
@font-face {
    font-family: "Minecraft";
    src: url("/Minecraft.ttf");
}
.label {
    background-color: #2b30358b;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 5px;
    font-family: "Minecraft";
    font-size: 125%;
    position: fixed !important;
    /* position: relative; */
}
.button {
    background-color: white;
    color: black;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 5px;
    font-family: "Minecraft";
    font-size: 125%;
    position: fixed !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}