.nav-menu {
    display: flex;
    background-color: #343a40;
    border-radius: 6px;
    overflow: hidden;
    margin: 10px 0;
}

.nav-item {
    flex: 1;
    padding: 12px 8px;
    color: white;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-right: 1px solid #495057;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    background-color: #495057;
}