﻿.main-view-wrapper {
    height: 100vh;
    padding: 0 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow-x: auto;
}

.main-view-area {
    height: calc(100vh - 60px); /* litt temp den her... :-) */
    overflow: auto;
}

.split-view-area {
    height: calc(50vh - 30px);
    overflow: auto;
}
.emma-overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    /*transition: opacity 0.3s ease, visibility 0.3s ease;*/
}
.emma-window-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.emma-window-grid-wrapper {
    flex: 1;
    min-height: 0;
    overflow: auto;
    margin-bottom: 7px;
}
.spaced-form-wrapper {
    width: 98%;
    height: auto;
    box-sizing: border-box;
    padding: 4px;
}
.emma-footer-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 16px !important;
    border-top: 1px solid var(--bs-border-color, #ccc) !important;
    background-color: var(--bs-body-bg, #fff) !important;
}

.emma-footer-left,
.emma-footer-right {
    display: flex !important;
    gap: 5px !important;
    align-items: center !important;
}