.boards {
    position: absolute;
    width: 100vw;
    height: calc(100vh - 50px);
    display: flex;
    z-index: -10000;
}

.boards_sidebar {
    min-width: 300px;
    width: 300px;
    height: 100vh;
    overflow: auto;
    background-color: white;
}

.boards_sidebar__save_button {
    margin: 10px;
    padding: 10px;
    background-color: rgb(100, 200, 100);
    text-align: center;
}

.boards_sidebar__save_button:hover {
    background-color: rgb(80, 180, 80);
    cursor: pointer;
}

.boards_sidebar__save_button:active {
    background-color: rgb(60, 160, 60);
    cursor: pointer;
}

.boards_sidebar__text {
    margin: 10px;
    text-align: left;
}

.boards_sidebar__text_editor {
    margin: 10px;
    padding: 10px;
    background-color: rgb(180, 180, 180);
    max-height: 300px;
    overflow: auto;
}

.boards_sidebar__button {
    margin: 10px;
    padding: 10px;
    background-color: rgb(200, 200, 200);
    text-align: center;
}

.boards_sidebar__button:hover {
    background-color: rgb(180, 180, 180);
    cursor: pointer;
}

.boards_sidebar__button:active {
    background-color: rgb(160, 160, 160);
    cursor: pointer;
}

.boards_sidebar__item {
    height: 300px;
    background-color: lightblue;
    margin: 10px;
    z-index: 0;
}

.boards_display {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: rgb(180, 180, 180);
    z-index: -100;
}

.boards_display__block {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -10;
    /* transform: rotate(10deg); */
}

.boards_display__block_content {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

img.boards_display__block_content {
    width: 100%;
    height: 100%;
}

.boards_display__block_text {
    margin: 5%;
    overflow-y: hidden;
}

.boards_display__block_lines {
    position: absolute;
    /* width: 100%;
    height: 100%; */
}

.boards_display__block_handle {
    border: 2px solid cyan;
    position: absolute;
    background-color: lightcyan;
    width: 10px;
    height: 10px;
}
