@media (min-width: 768px) {
    main {
         margin: 80px 50px 20px 70px;
}

    /* Desktop sidebar */
    nav {
        position: fixed;
        top: 50px;
        left: 0;
        height: calc(100vh - 50px);
        width: 50px;
        background: whitesmoke;
        margin: 0;
        border-right: 0.5px solid grey;
        padding-top: 5px;
        z-index: 1000;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        align-items: center;
    }

    nav ul li {
        border: none;
        list-style: none;
        width: 100%;
    }

    /* Icon on top, text below */
    nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5px;
        color: #333;
        text-decoration: none;
        font-size: 10px;
        text-align: center;
        transition: background 0.2s;
    }

    .feather {
        width: 20px;
        height: 20px;
        stroke-width: 1.7px;
    }

    nav a:hover {
        color: orangered;
    }

    nav p {
        display: none;
    }

    /* Active state */
    nav a.active {
        color: blue;
        border-left: none;
        border-bottom: 3px solid blue;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        justify-content: left;
    }

    .hamburger-btn {
        display: none;
    }
}