/* @import '~bootstrap/scss/bootstrap'; */

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;   /* REQUIRED */
}
.app-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 60px;
    background-color: #438eb9 !important;
    color: black;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.app-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}


.app-content {
    flex: 1;
    overflow-y: auto;   /* CONTENT SCROLLS */
    padding: 1rem;
}

.sidebar {
    width: 250px;
    background-color: #f8f9fa;
    overflow-y: auto;
}
.sidebar .menu-text,
.sidebar .nav-link {
font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #6c757d;}
.sidebar .nav-link.active {
    background-color: rgba(67, 142, 185, 0.25);
    font-weight: bold;
    border-radius: 4px;
}
.sidebar ul,
.sidebar ul.submenu {
    list-style: none;
}
.compacttable th,
.compacttable td {
  font-size: 12px;
}
/* standard table action buttons */
.btn-action {
    padding: 0.25rem 0.45rem;
    font-size: 12px;
    line-height: 1;
}

.btn-action i {
    font-size: 11px;
}

/* prevent buttons wrapping in tables */
.table-actions {
    white-space: nowrap;
}

/* top "New" button */
.btn-create {
    font-size: 12px;
    /* font-weight: 600; */
}

