body {

    > nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--nav-height);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        color: var(--color-accent);
        background: white;
        padding: 0 20px;
        transition: background-color 1s ease-in-out;

        a, label {
            text-align: center;
            line-height: var(--nav-height);
            cursor: pointer;
            font-weight: bold;
        }

        .logo {
            padding: 10px 0;

            img {
                height: 100%;
            }
        }

        .pages {
            display: flex;
            background-color: white;

            a, label {
                padding: 0 10px;
                flex-grow: 1;
                font-size: 0.7rem;
            }
        }

        .notif-holder {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;

            .notif {
                font-weight: bold;
                padding: 10px 20px;
                border-radius: 5px;
                font-size: 16px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                margin: 10px;
            }

            .notif-error {
                background-color: #FF4C4C;
                color: #FFFFFF;
            }

            .notif-message {
                background-color: #4CAF50;
                color: #FFFFFF;
            }

            &.notif-hidden {
                display: none;
            }
        }
    }

    label[for="hamburger"], #hamburger {
        display: none;
        padding: 0 10px;
    }

    @media screen and (max-width: 800px) {
        nav {
            .pages {
                display: none;
                transition: background-color 1s ease-in-out;

                a, label {
                    box-sizing: border-box;
                    display: block;
                    width: 100%;
                    border: none !important;
                }
            }
        }

        label[for="hamburger"] {
            display: inherit;
        }

        #hamburger:checked ~ .pages {
            position: fixed;
            padding: 0 50px;
            top: var(--nav-height);
            bottom: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            display: block;
            overflow-y: scroll;
        }
    }
}