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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

ul.nav.nav-pills {
    border: 1px solid #E0E0E0;
}

    ul.nav.nav-pills > li:not(:last-child) {
        border-bottom: 1px solid #E0E0E0;
    }

    ul.nav.nav-pills > li > a {
        color: black !important;
        font-weight: 700;
    }

.navbar-nav {
    list-style: none;
    padding: 0;
    display: flex;
}

    .navbar-nav li {
        padding: 0 10px;
        border-right: 1px solid #ccc;
    }

        .navbar-nav li:last-child {
            border-right: none;
        }

    .navbar-nav .nav-item:hover,
    .nav.nav-pills .nav-item .nav-link:hover {
        background-color: #eee;
    }


/* Accordion */
.accordion {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid #ccc;
    /*margin-bottom: 1rem;*/
    outline: none;
    transition: 0.4s;
}

    .accordion > h3 {
        display: inline;
    }

    .accordion:hover {
        background-color: #eee;
    }

    .accordion:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 13px;
        color: #777;
        float: right;
        margin-left: 5px;
        margin-top: 5px;
    }

.active {
    background-color: #eee;
}

    .active:after {
        content: "\2796"; /* Unicode character for "minus" sign (-) */
    }

.panel {
    padding: 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border: 1px solid #ccc;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    margin-bottom: 1rem;
    /*display: flex;
    justify-content: space-between;*/ /* content left, icon right */
    /*align-items: center;*/
}

.accordion:not(.active) + div.panel {
    border: 0;
    padding: 0;
}

.accordion + div.panel > ul > li {
    font-weight: 700;
    margin-bottom: 1rem;
}

    .accordion + div.panel > ul > li ul li,
    .accordion + div.panel > ul > li p {
        font-weight: initial; /* or another color */
    }

.card {
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 16px;
}

.scroll-container {
    display: flex;
    justify-content: flex-end;
}

    .scroll-container .scroll-top {
        border: 1px solid #ccc;
        padding: .25rem 1rem .25rem 1rem;
        cursor: pointer;
    }

        .scroll-container .scroll-top:hover {
            background-color: #eee;
        }

ul:not(.navbar-nav):not(.nav-pills) > li {
    margin-bottom: .5rem;
}

    ul:not(.navbar-nav):not(.nav-pills) > li:first-child {
        margin-top: .5rem;
    }

.code {
    border: 1px solid;
    padding: .25rem .5rem;
}

.footer .container {
    display: flex;
    justify-content: flex-end;
}

.params {
    font-style: italic;
    font-weight: bolder;
}

p {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

p + p {
    margin-top: 0;
    margin-bottom: .5rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}