/* Add this to your CSS stylesheet */



.nav-buttons {
    display: flex;
}

.nav-btn {
    width: 150px; /* fixed width */
    height: 50px;
    border: none;
    background-color: lightgray;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: grey;
}

.nav-btn[data-active="true"] {
    background-color: blue;
    color: white;
}

