
/* Navigation */
#nav_btn {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav_btn svg {
    display: block;
    width: 29px;
    height: 29px;
}

/* Smooth rotation so the nav icon points down on hover */
#nav_btn svg {
    transition: transform 220ms cubic-bezier(.2,.9,.3,1);
    transform-origin: 50% 50%;
}

#nav_btn svg path {
    stroke: white;
    fill: none;
}

#nav_btn:hover svg path {
    stroke: #cccccc;
}

/* Rotate the whole svg when hovering the button so the chevron points down */
#nav_btn:hover svg {
    transform: rotate(90deg);
}

#nav_bar {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 150px;
}

.nav_content {
    color: rgba(255, 255, 255, 0.663);
    font-family: "Manrope", sans-serif;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav_content:hover {
    color: white;
}
