#dbPanel {
    background: var(--main-color-light);
    width: 80vw;
    height: 80vh;
    z-index: 9999999;
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    display: flex;
}

#dbPanelOverview {
    background: var(--second-color-light);
    width: 20%;
    height: 100%;
    text-align: left;
}

#dbPanelRequests {
    background: var(--second-color-dark);
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#dbPanelRequestsQuery {
    width: 100%;
    height: 20%;
    resize: none;
    font-family: inherit;
    font-size: inherit;
}

#dbPanelRequestsResult {
    width: 100%;
    height: 80%;
    resize: none;
    font-family: inherit;
    font-size: inherit;
}

#dbPanelOverview li {
    cursor: pointer;
    padding: 0.25em 0em 0.25em 0em;
}

#dbPanelOverview li:hover {
    background: var(--cockpit-red);
    color: white;
}

#dbPanelOverviewList {
    font-family: inherit;
    font-size: inherit;
    height: 96%;
    overflow: auto;
}