.divPanel {
    color: darkblue;
    display: block;
    float: left;
    background-color: white;
    margin-bottom: 5px;
    margin-right: 5px;
    padding:5px;
    padding-bottom: 15px;
    min-width: 400px;
}

.section_title {
    color: white;
    background-color: darkblue;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 2px solid white;
    padding: 2px;
}

.ce_clickable {
    background-color: aquamarine;
    padding: 1px;
    border-radius: 10px;
}

@media screen and (max-width: 699px) {
    .divPanel {
        color: darkblue;
        background-color: white;
        vertical-align: top;
        padding: 5px;
        padding-bottom: 10px;
        display: initial;
        width: 100%;
        margin-bottom:15px;
    }

    html, body {
        overflow-x: hidden;
    }

    body {
        position: relative
    }
}

/* standard table formatting */

.gh-list table {
    border-collapse: collapse;
    border: 1px;
    color: darkblue;
}

.gh-list table,
.gh-list td,
.gh-list th,
.gh-list tbody,
.gh-list thead {
    border: 1px solid darkblue;
    border-collapse: collapse;
    padding-left:4px;
    padding-right:4px;
}

.gh-list tr:nth-child(even) {
    background-color: lavender;
    color: darkblue;
}

.gh-list tr:nth-child(odd) {
    background-color: white;
    color: darkblue;
}

.gh-list th {
    color: white;
    font-weight: bold;
    background-color: darkblue;
    border: 1px solid darkblue;
    text-align: center;
}

.gh-list tr:nth-child(even) {
    background-color: lightblue;
    color: darkblue;
}

.gh-list tr:hover {
    color: brown;
    background-color: burlywood;
}

.gh-listButton {
    display: inline-block;
    padding: 5px 5px;
    background-color: #4CAF50; /* Green */
    color: white;
    margin: 2px 4px;
    border-radius: 10px;
    font-size: 14px;
}


/* neat modal*/
.neatview {
    display: block;
    position: fixed;
    top: 65px;
    right: 1px;
    height: calc(96vh - 65px);
    width: 75%;
    /* max-width:800px; */
    border: 2px solid grey;
    background-color: white;
    z-index: 99100;
}

.neathide {
    height: auto;
    display: inline-block;
    position: fixed;
    top: 65px;
    right: 1px;
    border: 2px solid grey;
    background-color: white;
    z-index: 100;
}

.neatidoc {
    height: 98%;
    width:100%;
}


@media screen and (max-width: 900px) {
    .neatview {
        display: initial;
        position: fixed;
        height: 90vh;
        width: 100%
    }

    .neatidoc {
        height: 100vh;
        width: 98vw;
    }
}


/* The Modal (background) */
.gh-model-hidden {
    display: none; /* Hidden by default */
}

.gh-modal {
    display: inline-block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(220,220,220,.9);
}

/* Modal Content/Box */
.gh-modal-content {
    background-color: darkblue;
    color: white;
    margin: 5px auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    font-size: 1.1em;
    max-width: 800px;
}

.gh-modal-header {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
}

.gh-modal-title {
    color:white;
}

.gh-modal-footer {
    margin: 20px;
}

.gh-model-center {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 3px 5px;
    background-color: lightblue;
}

.star-button {
    display: inline-block;
    padding: 5px 5px;
    background-color: #4CAF50; /* Green */
    color: white;
    margin: 2px 4px;
    border-radius: 10px;
    font-size: 14px;
}

.gh-breadcrumbs {
    padding-top:20px;
    background-color:white;
}