html {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
}
nav, footer {
    flex: 0;
}
main {
    flex: 1;
    padding-top: 65px;
}

nav {
    background: #fff;
    border-bottom: 1px solid #DFE3E6;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav a {
    text-decoration: none;
    font-size: 14px;
    color: #C1C8CD;
}

nav a:hover,
nav a:active,
nav a:visited {
    text-decoration: none;
    color: #C1C8CD;
}

nav .catch-phrase {
    margin: 16px 0 -16px;
    position: relative;
    z-index: 100;
}
nav img {
    height: 80px;
    padding-left: 80px;
    margin-bottom: 16px;
}

main .disclosure-row {
    margin-top: 48px;
    color: #889096;
    margin-bottom: 24px;
}

footer {
    background: #F1F3F5;
    padding: 16px 0;
    font-size: 12px;
    color: #889096;
    margin-top: 48px;
}
footer p {
    margin-bottom: 0;
}
footer .row + .row {
    margin-top: 4px;
}

/* Dev Tools Styles */
.dev-tools-card {
    margin: 20px auto;
    max-width: 100%;
}

.dev-tools-card .card-header {
    background-color: #f8f9fa;
    cursor: pointer;
    padding: 0;
}

.dev-tools-card .card-header button {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500;
    position: relative;
    border: none;
    background: transparent;
}

.dev-tools-card .card-header button:hover {
    background-color: #e9ecef;
    text-decoration: none !important;
}

.dev-tools-card .card-header button:focus {
    box-shadow: none;
    outline: none;
}

.dev-tools-card .card-header button::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow-up.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.dev-tools-card .card-header button.collapsed::after {
    background-image: url('../images/arrow-down.svg');
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
