.update {
    color: #fff;
}

.update__link {
    padding: 0 20px;
    cursor: pointer;
    font-size: 20px;
}

.new {
    background-color: #fff;
    color: #000;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 300;
}

.nav__list__full {
    color: #fff;
    display: flex;
    flex-direction: row;
}



@media (max-width: 430px) {
    .update {
        display: flex;
        justify-content: center;
        flex-direction: column;

    }

    .new {
        text-align: center;
    }

    .update__link {
        padding: 5px 10px;
    }


    .navbar {
        position: relative;
    }

    /* Hamburger icon (3 lines) */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
    }

    .line {
        height: 4px;
        background-color: #fff;
        border-radius: 2px;
    }

    /* Dropdown menu styles */
    .nav__list__full {
        list-style-type: none;
        position: absolute;
        top: 50px;
        right: 0;
        background-color: #000;
        padding: 15px;
        padding-left: 30px;
        margin-top: 10px;
        display: none;
        width: 100vw;
        height: 100vh;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav__list {
        margin-bottom: 10px;
    }

    .nav__link {
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        margin: 30px 0;
    }

    .new {
        color: #000;
        padding: 10px 15px;
    }

    /* Show the dropdown when the menu is toggled */
    .nav__list__full.show {
        display: block;
    }
}



/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Navbar container */