* {
    box-sizing: border-box;
}

.app-outer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.app-inner {
    width: 80%;
    height: 100vh;
}

.pdf-frame-ctn, .annotations-ctn {
    height: 90%;
}

/* pdf-frame container */
/* ============= */
.pdf-frame-ctn {
    width: 60%;
    overflow: auto;
}

.pdf-frame-ctn .message-bar {
    height: 10%;
}

@media (min-width: 1600px){
    .pdf-frame-ctn {
        overflow: hidden;
    }
}

/* upload button */
/* ============= */
/* .pdf-frame-ctn .upload-button .file-cta {
    transition: var(--transition-fast);
}

.pdf-frame-ctn .upload-button .file-cta:hover {
    background-color: white;
    color: var(--color-violet);
    border: solid var(--color-violet);
} */

/* pdf-frame component */
/* =================== */
.pdf-frame .canvas-ctn {
    position: relative;
}

/* annotation drop component */
/* ========================= */
.annotation-drop {
    position: absolute;
    transition: var(--transition-fast);
}

.annotation-drop.is-filled {
    background-color: var(--color-violet-light);
    border: solid 2px var(--color-violet);
    cursor: move;
}

.annotation-drop.is-filled span {
    font-size: 14px;
    color: white;
    position: absolute;
    top: -3px;
    font-weight: 500;
}

/* annotation drag component */
/* ========================= */
.annotation-drag {
    border: solid var(--color-violet);
    transition: var(--transition-fast);
    margin: 0 auto;
}

.annotation-drag:hover {
    color: initial !important;
    background-color: initial !important;
}

/* annotations-container */
/* ===================== */
.annotations-ctn {
    width: 40%;
    border-left: 5px solid var(--color-grey);
    position: relative;
}

.annotations-ctn .spacer {
    height: 10%;
}

/* line caps for left border*/
.annotations-ctn::before, .annotations-ctn::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: var(--color-grey);
    left: -11px;
}

.annotations-ctn::before {
    top: -10px;
}

.annotations-ctn::after {
    bottom: -5px;
}

/* hide vue-draggable ghost on drop */
.sortable-ghost {
    display: none;
}