html {
    font-size: 14px;
}

@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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    --bg-theme: #b90efe;
    --fg-theme: wheat;
}

a {
    color: var(--bg-theme);
}

.navbar {
    background-color: var(--bg-theme);
    color: var(--fg-theme);
}

.sidebar-nav {
    background-color: var(--bg-theme);
    color: var(--fg-theme);
}

.navbar-brand,
.nav-link:focus, .nav-link:hover {
    color: var(--fg-theme);
}

a:hover {
    color: var(--fg-theme);
}

.nav-link {
    color: var(--fg-theme);
}

.toast-container {
    z-index: 9999
}

@media print {

    .printable .col-sm-4,
    .printable .col-md-4 {
        width: 33%;
    }

    .printable .col-sm-6,
    .printable .col-md-6 {
        width: 50%;
    }

    .btn-group {
        display: none;
    }

    hr {
        display: block;
        color: black;
        background-color: black;
        border: 2px solid black;
    }

    dt {
        white-space: nowrap
    }
}

input[type="checkbox"] {
    width: 24px;
    height: 24px;
}

output.form-control {
    border-style: dashed;
}
