html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 80px;
    background-color: var(--light-gray);
}

.navbar {
    border-bottom: 4px solid var(--navy-blue);
}

.container {
    max-width: 900px;
}

.mainbutton {
    width: 100%;
}

hr {
    margin: 35px 0;
}

/* Tables */
table {
    border: 1px solid #ccc;
    width: 100%;
}

    table td,
    table th {
        padding: 5px;
    }

    table th {
        background-color: var(--navy-blue);
        color: #fff;
    }

tr:nth-child(odd) {
    background-color: #ceddf5;
}

tr:nth-child(even) {
    background-color: #b7cbeb;
}

/* Fonts and Typography */
h1,
h2,
h3 {
    color: var(--navy-blue);
}

.disclaimer {
    font-size: 9pt;
}

/* Color Themes */
:root {
    --navy-blue: #002d74;
    --light-gray: #efefef;
}

/* Buttons */
.icon-button {
    width: 2rem;
    height: 2rem;
    padding: 0;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Backgrounds */
.bg-navy-blue {
    background-color: var(--navy-blue);
}
