html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.body {
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: minmax(min-content, 75%);
    grid-template-rows: max-content minmax(200px, max-content) 1fr;
    grid-gap: 26px;
    background: #888888;
    align-content: center;
    justify-content: space-evenly;
    justify-items: center;
    padding: 30px;
}

.body > * {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.header {
    font-size: 26px;
    text-align: center;
    font-weight: bolder;
    border-radius: 5px;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    grid-gap: 1px;
    background: #888888;
    overflow: hidden;
    min-width: 300px;
}

.header > div {
    padding:15px;
    background: #ffffff;
}
.logo {
    display: block;
    width: 200px;
    margin: auto;
}

.db-status {
    display: grid;
    grid-template-rows: max-content 1fr;
    width: 100%;
    max-width: 800px;
    min-height: 26px;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Roboto Mono', monospace;
    color: white;
    overflow: auto;
}


.db-status-header {
    padding: 10px;
    background: rosybrown;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.db-status-header.success {
    background: royalblue;
}

.db-status-header.error {
    background: #9b1c31;
}

.db-status-results {
    padding: 10px;
    background: #4f4444;
    margin: 0;
    border-radius: 0 0 5px 5px;
    overflow: auto;
}

