.nav {
    position: sticky;
    top: 0;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    /* Inline
    color: {{ Auth::user()->settings->color ?? 'black' }} !important;
    */
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.nav-desktop {
    max-width: 1200px;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px;
}

.nav-desktop-logo {
    display: flex;
    align-items: center;
}

.nav-desktop-logo a h1 {
    text-decoration: none;
    color: inherit;
    font-size: 30px;
    font-weight: bold;
    font-family: "Arial", serif;
}

.nav-desktop-links {
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 20px;
}

.link-btn {
    display: block;
    text-decoration: none;
    padding: 5px 10px;
    background: black;
    /* Inline
    background: {{ Auth::user()->settings->color ?? 'black' }};
    */
    color: white;
    border-radius: 5px;
    transition: 1s ease;
}

.link-btn:hover {
    transition: .5s;
    filter: brightness(70%);
}

.nav-mobile {
    z-index: 10;
    position: fixed;
    bottom: 0;
    display: none;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    box-sizing: border-box;
    padding: 10px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

}


nav hr {
    width: 100%;
}


@media only screen and (max-width: 500px) {

    .nav {
        position: relative;
        text-align: center;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    .nav-desktop {
        width: fit-content;

    }

    .nav-desktop-logo a {
        display: block;
        width: 100%;
        text-align: center;
        /* Inline
        background: {{ Auth::user()->settings->color ?? 'black' }};

         */
        color: white;
        border-radius: 10px;
        padding: 0 10px;
    }

    .nav-desktop-links {
        display: none;
    }

    .nav-mobile {
        display: flex;
    }

    .home {
        margin: 20px 0 0 0;
    }
}
