.navbar-container {
    -webkit-box-shadow: 0px 5px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 5px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 0px 5px 24px 0px rgba(66, 68, 90, 1);
    font-weight: bold;
    /* background-color:  rgba(66, 68, 90, 0.2); */
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    position: relative;
    color: cornflowerblue;
    transition: color 0.3s ease;
    display: inline-block;
    padding-bottom: 2px;
}

.nav-link:hover {
    color: rgb(72, 107, 173);
}

.nav-link::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(72, 107, 173);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

img.navbar-brand {
    max-width: 150px;
}

/* --- DODATKI DLA RESPONSYWNEGO MENU --- */

/* Domyślnie na desktop - menu poziomo */
@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column !important;
        text-align: right;
        gap: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: inline-block !important;
        /* zamiast block, aby link miał szerokość tekstu */
        padding-left: 0 !important;
        padding-right: 0 !important;
        /* usuń padding rozszerzający link */
        white-space: nowrap;
        /* żeby tekst się nie łamał */
        margin-bottom: 0.5rem;
        /* na mobile */
    }
}

div.docs {
    width: 500px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: space-around;
}

div.docs a{
    color: lightblue;
    text-decoration: none;
}